Okay.. i am trying to make a series of pages that are forms submitting on to another...
however there are some catches. I need the pages to not attempt to reload when the user clickes the forward or backward button...
i need them to check for login status and forward the user to a login page if they are not logged in...
im pretty sure they need to use session objects...
anyone know how to do it? I can get session to work, and using
Header("Location: login.html");
i can redirect with out reloading the page...
however the
session_start();
necessary to alow session object sto exist accross pages is causign the page to reload when the user clicks forward or backward on the browser...
any ideas?