I have a multipage form, with back buttons, and I'm trying to have a server-side way to maintain the form data if the user clicks back.
I have a back button like this:
<button id="backButton">Back</button>
And the button handler is as such:
$('#backButton').live('click',function() {
window.history.back();
});
After the first part of the form is submitted, I put all of the submitted data into $_SESSION variables. I can even echo out those variables on the second part of the form, but when I click the back button to go to the first part of the form, the session variables don't carry over.
I am starting the session correctly and I use session variables for various other parts of the site, and they work flawlessly.
How can I carry variables back when a back button is pressed?