Hi. I have an application that uses cookies for logging in. After logging in and out i do a redirect.
For logging in i have:
setcookie("xyz", "$id", time()+604800);
and for logging out :
setcookie("xyz","0",time()+302400);
The strange thing is that it works ok when viewed with (win2k + ie5.5) or (win98 + ie5.5) but it does NOT log out when viewed with (win2k + ie6.0). I tried everything (with or without quotes, etc).
The app is on a subdirectory and i know that certain cookies problems occur when this is the case. Do u have any clues?
Thanks.
John