Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Need help with DBI bind value error

by bigj (Monk)
on Jun 12, 2003 at 11:32 UTC ( [id://265337]=note: print w/replies, xml ) Need Help??


in reply to Need help with DBI bind value error

And in addition to the others, there is yet another little mistake in your script:
my %form_values="";
If you want to initialize an empty error, it's better to use
my %form_values; # just that, now it's empty # or my %form_values = (); # so that everybody knows you really wanted that
Your instead is interpreted by perl as
my %form_values = ("" => undef);
what is perhaps not what you meant.
BTW: Perl would have also told you that if you have switched warnings on :-)

Greetings,
Janek

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-26 00:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found