|
Posted by axlq on 12/17/10 11:54
In article <FI6dndl5FLljulPZnZ2dnUVZ_sadnZ2d@comcast.com>,
Jerry Stuckle <jstucklex@attglobal.net> wrote:
>Hmmm, is register_globals on in your system? That could be part of what
>you're seeing. But again - I don't use cookies to keep track of
>sessions. I let the session take care of itself and just destroy it at
>the end.
Whether you know it or not, you're using session cookies if you're
not passing the session ID through URLs.
The problem arises, I guess, because I'm deleting the session cookie
before calling session_destroy() -- because the php documentation said
to do that. I guess I don't really need to delete it.
Deleting the cookie gives it the value 'deleted' until the browser
is closed, which matches the sess_deleted file created when
session_destroy() is called. THAT was the whole problem.
-Alex
[Back to original message]
|