Help for this page

Select Code to Download


  1. or download this
    
    #!/usr/bin/perl --
    ...
    sub Main {
        ... # CGI program here
    }
    
  2. or download this
    package MyProgram;
    sub handler {
        CGI::initialize_globals(); # unneeded if using CGI->new
        ... # CGI program here
    }
    
  3. or download this
    MyApp->new->run;
    
  4. or download this
    Catalyst::ScriptRunner->run('MyApp', 'Apache');