Help for this page

Select Code to Download


  1. or download this
    sub handler {
       my $app = MyCGIAppSubclass->new;
       $app->run;
    }
    
  2. or download this
    my $app = MyCGIAppSubclass->new;
    sub handler {
       $app->run;
    }
    
  3. or download this
    package CGI::Application::FastCGI;
    use strict;
    use base qw (CGI::Application);
    ...
    }
    
    1;