Hi!
I want to do the folowing:
On page1.php i have a form with a method=post to page2.php
On page2.php i check some things, if all is okay, it does a header("location:page3.php");
That all works, BUT when the check is false, i will have to go back to page1.php ( header("location: page1.php");
The problem is that at that point i lose all formdata posted. I want to keep those to re-fill the form (so a user doesnt have to do it all over again).
How do i do this ?
Thnx,
Zimmon