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
