View Single Post
Old 03-21-2008, 09:44 PM   #2 (permalink)
psychdev
Junior Member
 
Join Date: Mar 2008
Posts: 11
Default 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)
psychdev is offline   Reply With Quote
Sponsored Links