|
Posted by MSB on 10/23/06 21:50
JohnDK wrote:
> 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
>
>
what is this for...somone wanting to show a different page based on the
user's lang?
Navigation:
[Reply to this message]
|