Help for this page

Select Code to Download


  1. or download this
    package My::Application::Base;
    use CGI::Application;
    ...
            'html', 'logout',
        );
    }
    
  2. or download this
        HOME => main.cgi?mode=home
        REPORTS => reports.cgi
        LOGOUT => main.cgi?mode=logout
    
  3. or download this
    package My::Application::Reports;
    use My::Application::Base;
    ...
    {
        # Do the actual display of the report.
    }