On Wed, 2014-02-26 at 14:33 -0500, Larry Martell wrote: > Is there a way I can clear my session data from the browser? This is > for debugging when I change something. Currently no matter what I do > short of exiting the browser, my session data is always retained. This > makes testing very cumbersome. > The session data is actually stored on the server, the browser just sends a session id in the requests it makes to the server so that the server can access the right data. You could clear the cookie (or URL parameter if you're using that method), that contains the session ID, from your browser, or you could follow the advice at http://uk3.php.net/manual/en/function.session-destroy.php which explains in a decent detail exactly how to do what you want. -- Thanks, Ash http://www.ashleysheridan.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php