Hi folks, just a quick form question.
Whenever I have used forms in the past I have always sent the data to a seperate page to be analysed, with a 'Back' button (using history.go(-1)) to return to the form to correct any errors. When editing forms (populated from a database) recently, I have had issues with the browser requesting to resend the form data when I use the back button.
I can avoid this by sending the POST data to the same page for validation.
Are there are any security issues with sending form data back to the same page? Should I continue to display the form on one page and analyse it on another?
Zagga