in reply to Need help with DBI bind value error
If you want to initialize an empty error, it's better to usemy %form_values="";
Your instead is interpreted by perl asmy %form_values; # just that, now it's empty # or my %form_values = (); # so that everybody knows you really wanted that
what is perhaps not what you meant.my %form_values = ("" => undef);
Greetings,
Janek
|
|---|