in reply to CGI::Application question

you can pass in parameters in new:
my $app = MyApp->new(PARAMS=>{'id'=>123}); # then access it as: my $id = $app->param('id');
Check the perldoc for CGI::Application.

Replies are listed 'Best First'.
Re^2: CGI::Application question
by artist (Parson) on Mar 22, 2005 at 21:18 UTC