Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Value Check

by blaze (Friar)
on May 30, 2003 at 23:32 UTC ( [id://261986]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://261986]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-20 02:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found