Hey,
I have a page which lets people enter details to a form and choose to "enter record and quit" or "enter record and add another".
The add another option, once entered in the DB, the user is redirected back to the previous form entry page - the problem is that the POST data is still there - so if you refresh the page, it submits to the DB again...
...is there a way to empy the post data once it's been used?
I tried
<?php $_POST = ""; ?>
but it appears to do nothing...
thanks for any help 🙂