Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Debug pukes here.

by myocom (Deacon)
on May 17, 2002 at 00:23 UTC ( [id://167153]=note: print w/replies, xml ) Need Help??


in reply to Uninitialised value in string error(was: Debug pukes here.)

This could be any number of things, but basically it means that the first part of your if condition is uninitialized. This could be because the $q object wasn't created, for example, or it could be that you have parentheses where you should have curly braces. Try this instead:
if ($q->param{'field'} eq "") { # Note that 'field' has curlies now &printform() } else { &results() }
While I'm at it, I'm betting that the & isn't really needed (and may have unwanted side effects) here. See A question of style for more information.
"One word of warning: if you meet a bunch of Perl programmers on the bus or something, don't look them in the eye. They've been known to try to convert the young into Perl monks." - Frank Willison

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-04-25 13:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found