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