try to use lower case for all your php command session_start(); session_destroy();
i think with session_destroy all of your session has been destroy, for make sure your session still exist or not you can use this command to check your session value. print_r($_SESSION); back button sometimes not generated new page, because some browser use last cache to render (it mean browser not render again). i hope it can help you --- In [email protected], Ken <[EMAIL PROTECTED]> wrote: > > I am building a members area for a club site I working on. My question > is how do I make sure the user is logged out. > If I do the logout code: > > SESSION_START(); > unset($_session['member']); > unset($_SESSION['FirstName']); > unset($_SESSION['LastName']); > unset($_SESSION['email']); > Session_destroy(); > > Then try to select a page I have logged out, however if I hit the back > button I will resume my session. How do I >
