Dear folks,
I am using the following code to set cookies, I am using PHP 4.06 :
<?php
setcookie("ck1","1st ckie");
setcookie("ck2","2nd ckie","(time()+60)");
setcookie("ck3","3rd ckie","time()+60");
setcookie("ck4","4th ckie",(time()+60))";
setcookie("ck5","5th ckie",time()+60);
?>
On IE 6.0 only the first 3 ones are written, but they never expire.
On Netscape 6.2 all are written, but only the last 2 ones expire.
The first one will never expires any way.
Any ideas what is going on?
Best Regards,
John Lemos