|
Posted by musiccomposition on 10/11/02 11:56
Just make a cookie with the same name and the orginal should be
overwritten.
Frits van Leeuwen wrote:
> 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]
|