how can I check that no $_POST vars have come through to another page. Is there one generic check?
Hi,
you can check that with something like:
if (empty($_POST)) { // no post vars }
Thomas
thanks for that, perfect
Don't forget to mark the thread resolved 🙂
There is a link near the bottom of the page.