http://search.cpan.org/search?module=CGI

Brad Handy
--www.jack-of-all-trades.net
[EMAIL PROTECTED]


> -----Original Message-----
> From: Teresa Raymond [mailto:[EMAIL PROTECTED]]
> Sent: Monday, August 13, 2001 12:48 PM
> To: Moon, John
> Cc: [EMAIL PROTECTED]
> Subject: RE: Multiple values and regex issue
> 
> 
> My computer has died so, I'm using my husband's which means that I 
> have lost all my links.  So, could someone please post the CGI.pm 
> documentation link?
> 
> >I believe what may be happening is the listbox/checkbox is returning an
> >array so $param{$i} for them is an array reference ... There is 
> a discussing
> >in the doc for CGI about this ...
> >
> >
> >Hope this helps ...
> >
> >jwm
> >
> >PS ...
> >
> >foreach (keys %params)
> >     {
> >     print "error msg" if ($params{$_} !~ /^([\w\s\.\/-]+)$/i);
> >     }
> >
> >I forget about "$_" ... it's free
> >
> >
> >-----Original Message-----
> >From: Teresa Raymond [mailto:[EMAIL PROTECTED]]
> >Sent: August 11, 2001 13:03
> >To: [EMAIL PROTECTED]
> >Subject: Multiple values and regex issue
> >
> >
> >I have the below regex which works except when I send multiple values
> >through a drop down list or through checkboxes.  The test evaluates
> >true and prints the Error Msg every time multiple values are passed.
> >Any suggestions?
> >
> >foreach my $i (keys %params)
> >{
> >if ($params{$i} !~/^([\w\s\.\/-]+)$/i)
> >     {
> >print "Error Msg";
> >}
> >}
> >
> >--
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to