|
Posted by Frits van Leeuwen on 08/28/06 11:02
I know, that's the problem
> Just make a cookie with the same name and the orginal should be
> > Hello,
> > I try to understand cookies.
> > This is what I have and it's working.
> >
> > INDEX.PHP
> > -------------
> > <?php
> > setcookie("LeeuwendeelTaal","--",time()+31536000);
> > ?>
> > <html>
> > <body>
> > <?php
> > if (isset($_COOKIE["LeeuwendeelTaal"]))
> > {
> > // here a case for NL or EN
> > print_r($_COOKIE);
> > echo "<br />Taalcode = " . $_COOKIE["LeeuwendeelTaal"] . "!<br />";
> > }
> > else
> > {
> > // Here I like to chooce the language
> > echo "Chooce your language<br />";
> > }
> > ?>
> > test3<BR>
> > </body>
> > </html>
> >
> > But....
> > I do not understand how more now.
> > When I start INDEX.PHP, I set a cookie. When it is already there, I
> > overwrite it. But I only like to use the cookie. And when I like, I like
to
> > change the file.
>
Navigation:
[Reply to this message]
|