Browser wars – Septembrie 2007 vs. Septembrie 2009
2 whispers

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 2007

Septembrie 2009

Septembrie 2009

no whispers

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.