NAME

Apache::CGI - Make things work with CGI.pm against Perl-Apache API

SYNOPSIS

require Apache;
require Apache::CGI;

my $r = Apache->request;
my $q = new Apache::CGI $r;

$r->print($q->header);

#do things just like you do with CGI.pm

DESCRIPTION

**NOTE** If you are using a version of CGI.pm such as 2.19, comment out the SelfLoader stuff. ********

When using the Perl-Apache API, your applications are faster, but the enviroment is different than CGI. This module attempts to set-up that environment as best it can.

SEE ALSO

perl(1), Apache(3), CGI(3)