I have created a simple login page which is based on the sessions.
session_start();
and added a logout page that contains this
session_destroy();
Now when I close the browser/page and reopen it, the values of the session are still there.
I want to know how to completely destroy the session on page/browser close.