|
Posted by Andrew Maxwell on 01/17/05 11:07
Thats exactly what i need. Thanks a ton.
~Andrew
On Mon, 17 Jan 2005 10:58:07 +0200, Ville Mattila <ville@pmd.fi> wrote:
> 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
>
>
>
[Back to original message]
|