I want to show mobile phone of the users i use
but when a user is browsing with e.g Opera mini it shows "you are using opera/8.01. i want it to show only phone name not the phone version like "You are using opera" pls help
Code:
<? $phone=explode("",$_SERVER['HTTP_USER_AGENT']); $phone=$phone[0]; print "You are using $phone"; //will print phone name ?>
Comment