Hi,
I am using sessions to hold a userID, This works great between my scripts, I initilise the session at the start;
session_start();
$user_ID =session_id();
session_register("user_ID");
The session carries through my scripts, then at the end I destroy the session;
session_unset();
session_destroy();
But whne I go back to the first form, it is still holding my session. Stop/starting the browser does start a new session, ( I know this), but..
if the user goes back to the first script (without stop/starting the browser)the previous session is still there.
Is there a way around this ?, I need to be able to destroy th esession whith out stop/starting the browser.