in reply to Re: Form Validation Ideas
in thread Form Validation Ideas
While you're at it you could do some basic cleansing inside the loop, and attack specific fields afterwards.my %missing; for my $item (qw{fname sname age street city zip etc}){ $missing{$item} = param($item) ? 0 : 1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Form Validation Ideas
by Fletch (Bishop) on Feb 25, 2008 at 16:16 UTC |