Hi there,
I have a simple multi-page form. On one page I ask the user to accept the terms and conditions by checking a checkbox. I then check to see if the box is checked, if it is I display reg2 else reg1 with error "Must accept".
if( $Terms == "Accept" )
{
$reg_form = display_reg_form2();
}
else
{
$error = "<font color=\"red\">You must accept the Terms & Conditions to proceed</font>";
$reg_form = display_reg_form1( $error );
}
I'm sure it's only me being stupid, but could someone please help me.
Thanks in advance.
Nick