The param method from CGI::Application does not return CGI parameters but properties of the instance. What you need to do is get the query object first and then get the CGI parameters from that:
my $self = shift; my $cgi = $self->query(); my $subj = $cgi->param( 'subject' );
In reply to Re: CGI::Application, $self->param() doesn't return
by derby
in thread CGI::Application, $self->param() doesn't return
by flamey
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |