[PHP] Re: Using php to verify fields in form...

2001-10-29 Thread Mike Frazer
I believe he was asking how to actually verify them, but I could be wrong... There are two ways to do it that are quick and painless. One involves matching with a regular expression (and since my regular expression knowledge is no longer up to snuff I won't even attempt to explain it in depth).

[PHP] Re: Using php to verify fields in form...

2001-10-29 Thread Richard Hollis
form passes to your php file your php file checks the variables with the same name of that of the form fields. you can then test htey have all been set accordingly e.g. $FieldName etc. "Jason" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am new to php