I have a working code for deleting cookies when someone presser "logout".
It works fine in IE5+ but NS6 doesnt delete the cookie at all. Why I can't understand.
This is the code for the deletion of cookies:
setcookie ("pwd", "", time() - 3600);
setcookie ("loginname", "", time() - 3600);
I have set the expire-date to "negative" values, which means that the cookies should be deleted at once. That works as I said in IE.
Tips, ideas?
Regards