Return to Snippet

Revision: 34292
at October 20, 2010 16:52 by MrFjords


Initial Code
/*********** Detect ***********/

$agent = $_SERVER['HTTP_USER_AGENT'];  
  
if(preg_match('/iPhone|Android|Blackberry/i', $agent)){  
    echo "You're using a mobile device.";  
}  

/*********** Redirect ***********/

$agent = $_SERVER['HTTP_USER_AGENT'];  
  
if(preg_match('/iPhone|Android|Blackberry/i', $agent)){  
    header("Location: mobile.html");  
    exit;  
}

Initial URL


Initial Description


Initial Title
Mobile - detect or redirect

Initial Tags
php, mobile

Initial Language
PHP