Hi,
the following code only sets the second cookie. Why?
I am using PHP4 and Apache for Windows.
Thanks.
<?php
setcookie('one','ONE',(time()+3600),'/');
setcookie('two','TWO',(time()+3600),'/');
?>
<head><title>Cookie Test</title></head>
<body bgcolor="#FFFFFF" text="#000000">
Cookie Check Status:<br>
<?php
echo "first: ".$COOKIE[one]."<br>";
echo "second: ".$COOKIE[two];
?>
</body>