I am developing a web application that uses a cookie to store session information. I manually deleted session cookies because I am working on another piece of code where I do not want a login session. However, after the page is reloaded, the session cookie mysteriously appears again, including the earlier cookie, which I set only once for testing, then deleted and never used again.
I continue to manually delete cookies, but still, when I reload the page after a while, the cookies are returned. I double checked my code and I am sure that I do not set these cookies anywhere. At the moment, my code is in a single file and I am not including anything, so there is no way for me to skip something.
My code is in PHP and used the setcookie () call when I originally created these cookies.
I have not set a cookie expiration date. Uses Safari 4 Beta and GlimmerBlocker Proxy.
What is the explanation for this strange behavior?
source
share