Problems? Is your data what you think it is? | |
PerlMonks |
Re^7: Perl and Mysql Queriesby Danny (Hermit) |
on Jun 11, 2024 at 15:23 UTC ( [id://11159905]=note: print w/replies, xml ) | Need Help?? |
Undefined subroutine &main::param called
That means CGI::param wasn't imported into main::param. It looks for main::param but can't find it. Make sure you import CGI::param with 'use CGI qw/:standard/;' or however you want. You might also consider using the object oriented style like.
In Section
Seekers of Perl Wisdom
|
|