I am reloading the document after 1 minute. I first tried to use the following:
<META HTTP-EQUIV="Refresh" CONTENT="60;URL=<?php echo ("$PHP_SELF"); ?>">
However, it does not remember any of the information submitted by the previous page and i get "Undefined variable" warnings all over.
I solved the lost data by using a javascript triggered:
"history.go(0);". This works great, but IE complains that it cannot continue without "resubmitting" data.
Any ideas how i can refresh the page and forcefully resubmit the data passed by the previous page -- without a dialog?
Thanks!