Csongor Fagyal wrote:
Hi,

In a sentence: is there a way to access an object which is mostly "equivalent" to a CGI object?

I have a module that needs a CGI instance. Right now I do
<%
...
use CGI;
my $q = CGI->new;
my $mymodule = MYMODULE->new($q);
...
%>
No, there is no CGI object already, but you can create one
in this way just fine.  Apache::ASP reties STDIN on the
backend to make this possible.  If you want to have a $CGI
object available in each of your scripts, you could do this:

# global.asa file
use vars qw($CGI);
use CGI;

sub Script_OnStart {
    $CGI = CGI->new;
}

Regards,

Josh
________________________________________________________________
Josh Chamas, Founder                   phone:925-552-0128
Chamas Enterprises Inc.                http://www.chamas.com
NodeWorks Link Checking                http://www.nodeworks.com


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to