Tag: google chrome
Browser wars – Septembrie 2007 vs. Septembrie 2009
by Andrei on Sep.28, 2009, under Caterinci, Photos, Viata de zi cu zi, Viata in 1 si 0
Mă gandeam la cum au progresat vizitatorii mei din punct de vedere al browserului folosit. Aşa că am apelat la Mister Google Analytics pentru a vedea ce browsere se foloseau în 2007 şi ce se foloseşte acum. Pun mai jos 2 screenshot-uri, comentariile despre căderea Internet Explorer și ridicarea concurenților le aştept de la voi. Și pentru curioși, IE6 a căzut de la 27.5% până la un pic peste 10%. 🙂

Septembrie 2007

Septembrie 2009
Detect Chrome with PHP
by Andrei on Nov.04, 2008, under Viata in 1 si 0
We all have trouble sometimes with the render engine of Google Chrome, so here is a PHP way to identify it, using the HTTP_USER_AGENT.
<?php $mystring = $_SERVER['HTTP_USER_AGENT']; $findme = 'Chrome'; $pos = strpos($mystring, $findme); if ($pos === false) { echo "stuff to be seen in all other browsers"; } else { echo "stuff to be seen in Chrome"; } ?>
Feel free to use and improve this.