Jump to content

[SOLVED] detect mobile browser


bradkenyon

Recommended Posts

I am using this php script to detect mobile browsers: http://www.andymoore.info/php-to-detect-mobile-phones/

 

I include the script at the top of the page, then do the if statement he used in the example, but when I view the page on a normal web browser, it shows nothing.

 

Could someone help me out w/ what I might be doing wrong?

 

Thanks.

 

<?php 
include('mobile_detect.php');
if(detect_mobile_device())
{
header('Location: http://m.domain.com/');
exit;
}
else
{
//normal website html
}
?>

Link to comment
https://forums.phpfreaks.com/topic/117547-solved-detect-mobile-browser/
Share on other sites

  • 2 weeks later...
  • 1 year later...

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.