[PHP] Re: how to check the form filled all

2004-01-26 Thread jsWalter
You might want to think about client side validation as well. This infomrs the user of any probelms *before* it hits your server. Now, this does *not* remove the step of form value checking on the server. Check out... http://groups.yahoo.com/group/javascript_validation/ A nice little clien

Re: [PHP] Re: how to check the form filled all

2004-01-19 Thread John W. Holmes
Chris W wrote: Sungpill Han wrote: HI, i want to check if the user filled the all inputs in the form. So, I checked NULL and "" with this function in the post receiving script. --- function is_filled_out() { // test that each variabl has a value foreach($_POST as $ke

[PHP] Re: how to check the form filled all

2004-01-19 Thread Chris W
Sungpill Han wrote: HI, i want to check if the user filled the all inputs in the form. So, I checked NULL and "" with this function in the post receiving script. --- function is_filled_out() { // test that each variabl has a value foreach($_POST as $key => $value) {