|
Posted by JohnDK on 10/13/06 09:04
Hi friends.
I need some help here.
I have make this little piece i PHP, all files are where there shall be.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sporg fordeling</title>
</head>
<body>
<?php
$userlang=$_SERVER["HTTP_ACCEPT_LANGUAGE"];
$userlang=substr($userlang,0,2);
switch($userlang) {
// Work so far, but the don't work.
case 'en': ("location: /en/index.php");break;
case 'de': ("location: /de/index.php");break;
default: ("location: /da/index.html");
}
?>
</body>
</html>
BR
John
Navigation:
[Reply to this message]
|