At 20:26 14.03.2003, drparker said:
--------------------[snip]--------------------
>I'm running this script to make sure all fields are filled in on a form:
>
>foreach($_POST as $p)
>{
>  if(!$p)
> {
>  header("Location: signup.php?error=3");
>  exit();
> }
>}
>
>But I need to exclude one field on the form from being checked -
>Street2.  How could I do this?
--------------------[snip]-------------------- 

That's generally not a good idea because depending on the type of control
empty input fields will not be available in the $_POST array (e.g.
unchecked checkboxes are _not_ sent by the browser).

You should rather have a list of input variables that need to be filled and
compare $_POST against this.


-- 
   >O     Ernest E. Vogelsinger
   (\)    ICQ #13394035
    ^     http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to