I have a sign-up form that takes several steps.
In one of the steps, they fill up some information, and they select some images to upload.
The next step, they see a review of their application.
What is likely to happen next is that if the user sees something he doesn't like, he will hit the back button to change what's on the form.
However:
1) He might get one of those browser warning message about form submissions
2) If he does go back, I want the file-upload module to behave differently (maybe show the images he uploaded, allowing him to change the one he wants)
How can I more control of what the user sees if he clicks the back button?
PS. I'm using PHP (html, javascript, whatever ...). For other parts of the application process I used ajax behavior to save anything they do in real-time (checking boxes, etc ...). So I made the "continue" button just a regular link. Here however, uploading files makes this process more difficult.