Hi Jason,
I do something like this.
On the form page I set a session variable like.
session_start(); // this must be on your pages and before any HTML
if($_SESSION['AUTHORIZED'] != "YES") {
$_SESSION['AUTHORIZED']="YES";
//All your form code goes here.
} else {
die("Sorry, whatever you want to tell them goes here.");
}
What this does is check to see if they submitted the form, and if no, then let them proceed. Otherwise, the "die("....." at the end.
There are other ways of doing this, this just seems to work well for me.
Don