in reply to CGI::Application giving blank forms
should be something likemy $title = $self->param(q{title});
$self->param(xxx) returns params set by, say, your instance script. You need the params from the query which in CGI::A is in $self->query.my $q = $self->query; my $title = $q->param(q{title});
update: fixed $q->param(q{title});
|
|---|