hvad er der galt?
jeg har dette script som skal redirecte baseret på browser/os system..men det virker ikke??den skriver:
Parse error: parse error in /server/jobb23/docs/os.php on line 2
<?php
if (preg_match(\'/windows nt 5.0/i\',$HTTP_USER_AGENT)))
{
header(\'location: win2k.html\');
exit;
}
if (preg_match(\'/macintosh/i\',$HTTP_USER_AGENT)))
{
header(\'location: mac.html\');
exit;
}
if (preg_match(\'/linux/i\',$HTTP_USER_AGENT)))
{
header(\'location: linux.html\');
exit;
}
if (preg_match(\'/windows nt 5.1/i\',$HTTP_USER_AGENT)))
{
header(\'location: winxp.html\');
exit;
}
if (preg_match(\'/opera/i\',$HTTP_USER_AGENT)))
{
header(\'location: opera.html\');
exit;
}
?>