Here's my problem.
My multipurpose PHP page has "If" logic around a FORM element, to prevent the FORM from display unless the user hits a "Send Feedback" button.
But the user can retrieve and re-submit his data numerous times - simply by hitting the browser's "back" button and resubmitting the form.
To prevent this potential data abuse, I need to ERASE the form's text the user originally submitted. For this I need access to the DOM. But the DOM is not available, because when the window loaded the form was NOT yet invoked.
Any ideas?
.
My multipurpose PHP page has "If" logic around a FORM element, to prevent the FORM from display unless the user hits a "Send Feedback" button.
But the user can retrieve and re-submit his data numerous times - simply by hitting the browser's "back" button and resubmitting the form.
To prevent this potential data abuse, I need to ERASE the form's text the user originally submitted. For this I need access to the DOM. But the DOM is not available, because when the window loaded the form was NOT yet invoked.
Any ideas?
.