Re: not authorized to view this page
One simple coding idea I can come up with is .. pass a hidden input to the page..
at the end of the form on the first page add something like
<input type='hidden' value=1 name='checkSubmit' />
and at the top of the registerScript.php add
if(!(isset($_POST[checkSubmit])))
$deny = true;
then only perform register functions if(!$deny)
|