|
Posted by Frits van Leeuwen on 08/22/06 09:17
Hello,
I like to use a cookie for the language. But there is some thing wrong. Who
can tell me what's wrong in my code?
After the choosen language, I like to jump to en/index.htm for English and
nl/index.htm for dutch. This is working, but when I goto
www.leeuwendeel.info again, I need to choose the language again. I like to
redirect without choosing.
Thanks before helping.
Frits van Leeuwen
<?php
if (isset($_COOKIE['LeeuwendeelTaal']))
{
header(sprintf('location:
http://www.leeuwendeel.info/'.$LeeuwendeelTaal.'/index.htm'));
exit;
}
?>
<html>
<head>
<meta http-equiv="Content-Language" content="nl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Begin Leeuwendeel.info</title>
<bgsound src="geluiden/lion.wav" loop="0">
<meta name="keywords" content="Leeuwendeel familiewebsite / familywebsite
van Leeuwen">
<meta name="description" content="Dit is de beginpagina van
www.Leeuwendeel.info / This is the beginpage of www.Leeuwendeel.info">
<meta name="Microsoft Border" content="none">
</head>
<body link="#0000FF" vlink="#800080" alink="#00FFFF" text="#FF0000"
bgcolor="#FFFFE1">
<div align="center">
<table border="1" width="100%" id="table1" style="border-width: 0px"
height="530">
<tr>
<td style="border-style: none; border-width: medium">
<p align="center"><font size="4" face="Monotype Corsiva">
Welkom op de familie-website</font>
<font face="Monotype Corsiva" size="5"><br>
"Leeuwendeel.info"</font>
<font size="4" face="Monotype Corsiva">.</font></p>
<p align="center"><font size="4" face="Monotype Corsiva">
Zoals u ziet, zijn we hard aan het werk, om deze website in de lucht
te krijgen.</font></p>
</td>
<td rowspan="1" style="border-style: none; border-width: medium">
<p align="center">
<img border="0" src="images/underconstruction.gif" width="480"
height="379"></p>
</td>
<td style="border-style: none; border-width: medium">
<p align="center"><span lang="en-gb"><font size="4" face="Monotype
Corsiva">
Welcome at the family-website</font>
<font face="Monotype Corsiva" size="5"><br>
"Leeuwendeel.info"</font>
<font size="4" face="Monotype Corsiva">.</font></p>
<p align="center">
<font size="4" face="Monotype Corsiva">
As you can see, we are very busy, to bring this website online.</font>
</span></p>
</tr>
<tr>
<form action="index.php" method="post">
<td style="border-style: none; border-width: medium">
<p align="center">
<a href="/nl/index.htm" onClick="SetCookie('LeeuwendeelTaal', "nl",
mktime(0,0,0,1,1,2100)));">
<img border="0" src="knoppen/vlagNL.jpg" width="165" height="100" alt="Klik
hier, wanneer u de site in het Nederlands wilt lezen."></a></td>
<td style="border-style: none; border-width: medium">
</td>
<td style="border-style: none; border-width: medium">
<p align="center">
<a href="/en/index.htm" onClick="SetCookie('LeeuwendeelTaal', "en",
mktime(0,0,0,1,1,2100)));">
<img border="0" src="knoppen/vlagEN.jpg" width="165" height="100"
alt="Click here, when you like to read the website in English."></a></td>
</form>
</tr>
</table>
</div>
<p align="center"><font size="1">Laatste wijziging: 22-08-2006</font></p>
</body>
</html>
Navigation:
[Reply to this message]
|