Hi,
I am having this really weird problem with the setcookie() function with PHP.
I am setting a cookie in one page and trying to read it on another. On neither pages do I get an error, but at the same time, the cookie seems to be empty.
Here's my code,
<?
setcookie ("message", $mess, time()+7200);
?>
$mess is not empty as I am able to print it.
Any help is appreciated.