Is there a way to provide a link that would allow someone that filled out a form to go back without losing their data instead of having to use the browser back button? What I have is a membership form (add_member.php). When user hits submit, it is posted to process_member.php. My process_member.php first returns to the browser the contents of the filled in form for the user to check to ensure that they entered the correct information before the process_member.php script enters the data into a database. The script works fine and this is not where my problem lies. I just want to provide a link to go back to the cached form to allow any changes before the script processes the data. I tried <a href="<? $_SERVER['HTTP_REFERER'] ?>">BACK TO FORM</a> but all the form fields are no longer filled in.
I just want to add the link because I think that would look more professional than making the user hit the back button.