hi
I am having weird problems with my log out form. When logging out, no error is displayed but the session file on the server is not deleted.
On top of that, if I delete the session file manually, then click on the back button of my browser (I am propagating the session id in the url) so that a link with the session id is displayed in the address bar and do a refresh, the session file is recreated again on the server!
my logout form only contains this:
session_start ();
session_unset ();
session_destroy ();
Could anyone explain to me why this is happening?
thanx
sr