in reply to Value Check

you could always just do:

if($q->param('userid') eq ""){

or

if(! $q->param('userid')){

though you realize that all someone has to do to bypass this is add a query string right? you may be better off just making sure it's coming from your form specifically using $ENV{'HTTP_REFERER'}, which still isnt foolproof

-Robert

Hopefully there will be a witty sig here at some point

Replies are listed 'Best First'.
Re: Re: Value Check
by lisaw (Beadle) on May 30, 2003 at 23:56 UTC
    That did the trick! Thank You!!
    if(! $q->param('userid'))
    Have a great weekend! Lis.