in reply to Re: Using CGI param method
in thread Using CGI param method

Is there a particular reason to use: use CGI? qw(:standard); and then create the CGI object? By creating the CGI object you already have access to all the methods normally exported by :standard. Is there something I'm missing here?

The only explanation I can guess at would be a mod_perl situation where you wanted to preload as much of the CGI module as possible before the webserver forked.

Thank you for any insight you can provide.

Replies are listed 'Best First'.
Re: Re: Re: Using CGI param method
by sgifford (Prior) on Apr 20, 2004 at 17:51 UTC
    No, I just cut-n-pasted the OP's code and forgot to remove that. For mod_perl you'd use the -compile pragma to preload and pre-compile.