In the past, I have done what Cory outlines
> From: "Cory Trese" <[EMAIL PROTECTED]>
>>> SNIP >>
>
> # install global variable values from config file
> $service_name = %conf->{'service_name'};
> $service_url = %conf->{'service_url'};
> $session_life = %conf->{'session_life'};
> $session_context = %conf->{'service_id'};
>
> << SNIP <<
in HTML::Template by doing
while( ( $key, $value ) = each( %$conf ) ){
$template->param( $key => $value );
}
How would I peform the above in CGI-APP using the paired values from the
PARAMS parameter set in the cgi? (e.g. $myapp = MyApp->new( PARAMS =>
\%global_params)
Thanks, Eric.
---------------------------------------------------------------------
Web Archive: http://www.mail-archive.com/[email protected]/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]