Als ik onderstaand script in de index pagina plaats van mijn standaardpagin en ik deze dan open in een IE bowser op een desktop kijg ik de volgende melding:
Parse error: syntax error, unexpected '}' in C:\domains\voorbeeld.com\wwwroot\index.php on line 10
Parse error: syntax error, unexpected '}' in C:\domains\voorbeeld.com\wwwroot\index.php on line 10
PHP:
<?php
// Written By Adam Khoury @ developphp.com - March 26, 2010
// PHP mobile browser detection ready Home Page(index file that detects and redirects)
// Simply find the device OS or browser label and place conditionals as needed
$agent = $_SERVER['HTTP_USER_AGENT']; // Put browser name into local variable
if (preg_match(“/iPhone/”, $agent)) {
// Apple iPhone Device
// Send them to iphone sized homepage for mobile
header(“location:http://www.voorbeeld.com”);
} else if (preg_match(“/android/”, $agent)) {
// Google Device using Android OS
// Send them to android sized homepage for mobile
header(“location:http://www.voorbeeld.com/mobiel1”);
}
(preg_match(‘/opera mini/i’,$user_agent) {
// Google Device using Android OS
// Send them to android sized homepage for mobile
header(“location:http://www.voorbeeld.com/mobiel2”);
}
?>
Laatst bewerkt door een moderator: