Re: why does this not work?



Frits van Leeuwen wrote:
I start Index.php
There is a button to taal_nl.php (read here)

<?php
setcookie("LeeuwendeelTaal", "nl", time()+28800*4));
Echo "De taal is Nederlands.";
?>


You have one bracket too much on line 2 in taal_nl.php, I changed your code to this:

<?php
setcookie("LeeuwendeelTaal", "nl", time()+28800*4);
echo "De taal is Nederlands.";
?>

and it's work for me.
.


Quantcast