Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / PHP
Tip/Trick

PHP browser detector

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
3 Jul 2011CPOL 18.6K   1  
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)


Written By
Bahrain Bahrain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --