Th user submits a form. PHP does some crap. Then redirects you to another page with:
header("Location: somewhere.html");
Now on somewhere.html, if you press refresh it will ask you to resubmit the form data although that was the previous page that had the redirect.
In the URL the address stayed the same as the page that has the redirect. But the ACTUAL HTML (content) of the site changed to what it was supposed to.
Any ideas how to fix this?
Notes: PHP4 on Win32
Derek