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

Re: use of uninitialised value

by friedo (Prior)
on Mar 07, 2005 at 18:32 UTC ( [id://437282]=note: print w/replies, xml ) Need Help??


in reply to use of uninitialised value

Perl optimizes things like "$upload_dir/$filename" to $upload_dir . '/' . $filename, which is why the warning is complaining about the concatenation operator. One of those variables is not initialized. Try printing them to see which one it is. You've probably got a typo somewhere. If one of them is supposed to be empty in some circumstances, make sure it's set to the empty string ("") instead of remaining uninitialized.

Log In?
Username:
Password:

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

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

    No recent polls found