$HTTP_USER_AGENT showing full information of the device, but I want to show only the device name. (e.g. Opera, SonyEricsson C510, N97,..etc). Plz help me
Here is my site
Here is my site
<?php echo $_SERVER["HTTP_USER_AGENT"]; ?>
<?php $name = explode("/",$_SERVER["HTTP_USER_AGENT"]); echo $name[0]; ?>
Comment