Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / PHP

PHP browser detector

0.00/5 (No votes)
3 Jul 2011CPOL 18.7K  
Code to detect browser name in PHP.

The following code provides a simple PHP browser detection method which only echos the name of the browser used by the user.


PHP
<?php
$browser="";
     if(strpos(strtolower($_SERVER["HTTP_USER_AGENT"]),strtolower("MSIE"))){$browser="ie";}
else if(strpos(strtolower($_SERVER["HTTP_USER_AGENT"]),strtolower("Presto"))){$browser="opera";}
else if(strpos(strtolower($_SERVER["HTTP_USER_AGENT"]),strtolower("CHROME"))){$browser="chrome";}
else if(strpos(strtolower($_SERVER["HTTP_USER_AGENT"]),strtolower("SAFARI"))){$browser="safari";}
else if(strpos(strtolower($_SERVER["HTTP_USER_AGENT"]),strtolower("FIREFOX"))){$browser="firefox";}
else {$browser="other";}
echo $browser;
?>

Note: I have posted this tip in order to help beginners like myself as I have faced this same problem. Please feel free to correct me if I am wrong.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)