http://www.perlmonks.org?node_id=181593


in reply to Re: Hmm I get this error from $q's
in thread Hmm I get this error from $q's

Let me expand on that a little. It appears to me that you are using the funcional interface to a module as opposed to the object oriented version. If this is a CGI script and you are tring to call param from CGI.pm the following is needed.

use CGI qw(:standard);

This imports the most common functions from CGI.pm including param(). If you are using a different module please post a follow-up with more of your code.