Hi
I am trying to keep track of the previous page in my multi part form.
I’m using sessions
I set each page with
[php] $_SESSION[‘page’]=basename($_SERVER[‘PHP_SELF’])[/php]
I call the session from whatever page and it tells me the last page ok
Problem is if I hit the refresh button it instead gives me the page name of the present page as the session is now updated.
How can i stop it updating and just giving me the previous page?