Re: [PHP] Form verification

2006-11-01 Thread Joe Wollard
Captcha http://en.wikipedia.org/wiki/Captcha On 11/1/06, Ron Piggott (PHP) <[EMAIL PROTECTED]> wrote: I am wondering if any of you know what it is called when letters come up for the user to key in for form entry verification. Ron -- PHP General Mailing List (http://www.php.net/) To unsubsc

Re: [PHP] Form verification

2001-07-19 Thread Sheridan Saint-Michel
If you want it displayed by the missing fields try something like formA must be filled out!"; echo "formB"; if(isset($submit) && $submit != "" && (!isset($formB) || $formB == "") ) echo "formB must be filled out!"; echo "formB"; echo ""; ?> Hope that helps Sheridan - Origina