I have searched many posts here and elsewhere but can\'t seem to find a solution to my problem. I have a page which displays database entries: database.php. These entries c
There are two ways I know of to do this. The simple way and the hard way.
Regardless of the way, when you are dealing with a state-based page (using $_SESSION
), which you should be doing to keep your pages "live" and under your control, is prevent the caching of all pages like this:
The hard way involves generating an id and storing it somewhere on the page as a hidden input or a &_SESSION
cookie. Then you store the same id on the server as a $_SESSION
. If they don't match, a series of preprogrammed if
else
type statements cause nothing to happen with the page is resubmitted (which is what it tries to do when you click back).
The easy way is to simply redirect the user back to the form submission page if the form was submitted successfully, like so:
header('Location: http://www.mydomain.com/redirect.php');
I hope this helps!