Here is the PHP source code for the form checker example that is found here.





PHP Form example





 
First Name:
Last Name *:
Email Address *:
Operating System:

You are missing some required fields!"; print_form($f_name, $l_name, $email, $os); } else{ confirm_form($f_name, $l_name, $email, $os); } } //** end of "check_from" function function confirm_form($f_name, $l_name, $email, $os) { ?>

Thanks! Below is the information you have sent to us.

Contact Info

"; echo "Email: $email
"; echo "OS: $os"; } //** end of "confirm_from" function /*Main Program*/ if (!$_POST["submit"]) { ?>

Please enter your information

Fields with a "*" are required.

]]>