Jump to content

mobile visitor?


kla0005

Recommended Posts

of the top of my head, do mobile browsers have different names i.e. opera mobile, internet explorer mini (something like that)

 

if so code could be something like

 

if(strpos( $_SERVER['HTTP_USER_AGENT'], 'mobilebrowsername') == true)

header("location:http://www.google.com");

 

have no idea if that will work but you never know :)

Link to comment
https://forums.phpfreaks.com/topic/210137-mobile-visitor/#findComment-1096790
Share on other sites

if (strpos(strtolower($_SERVER["HTTP_ACCEPT"]), "text/vnd.wap.wml") !== false) $wml_device = true;
else $wml_device = false;
if (strpos(strtolower($_SERVER["HTTP_ACCEPT"]), "text/html") !== false) $html_device = true;
else $html_device = false;

if($wml_device&&!$html_device)
{
echo "<meta http-equiv=\"refresh\" content=\"0; url=http://mobile.site.com\"/>";
}
else if($wml_device&&$html_device)
{
echo "<meta http-equiv=\"refresh\" content=\"0; url=http://mobile.site.com\"/>";
}
else echo "<meta http-equiv=\"refresh\" content=\"0; url=http://computer.site.com\"/>";

Link to comment
https://forums.phpfreaks.com/topic/210137-mobile-visitor/#findComment-1096858
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.