Mobile - detect or redirect
Copy this code and paste it in your HTML
/*********** 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");
}
Report this snippet