JUAN AMORE [[EMAIL PROTECTED]] quoth:
*>$form_data = $ENV{'QUERY_STRING'};
*>
*>$form_data =~ s/%([\dA-Fa-f][\dA-Fa-f])/pack ("C",hex ($1))/eg;

do something like

unless (param('foo'))
{

'print out some HTML here describing the error'
        exit;
}

This will check for the parameter you want to make sure is populated and
spit out an error at the user if not..

Also, you might want to have a look at 'perl for web site management' that
was just published since it's the best beginner cgi book I've seen.

e.

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

Reply via email to