Andrew Maxwell wrote:
When you submit something, and you want to make sure that the user
inputs all of the info, is there an easier way to do it than this:

One method I've done that is to create an array with the required field names, then loop it through and check whether they all have a value.


$required = array('name','pass','blah');
foreach ($required as $req) {
        if (!$_POST[$req]) {
                die("$reg is missing");
        }
}

- Ville

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

Reply via email to