in reply to Re: CGI::Application and $self->param() wierdness
in thread CGI::Application and $self->param() wierdness
Yes, my actual application will only grab it where I need to use it. I was just concerned that I couldn't grab the value in the setup() method.
For the sake of completeness (of the contrived example, not my real code), the following is the altered WebApp.cgi:
I'm not recommending that people use global variables this way in production code.#!/usr/local/bin/perl use WebApp; my $webapp = WebApp->new( PARAMS => { 'var1' => 'val1', 'var2' => 'val2', }, ); $webapp->run;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CGI::Application and $self->param() wierdness
by dragonchild (Archbishop) on Jul 08, 2004 at 15:37 UTC |