in reply to Passing CGI parameters on new CGI
The cgi file may look like this:
When you put all the actual code in modules, calling one "page" from another is trivial and you can always use POSTs.#!/usr/bin/perl -w use MYModule; (MyModule::doPage(), exit) if defined CGI::param('doPage'); (MyModule::doOtherPage(), exit) if defined CGI::param('doOtherPage');
Russ
|
|---|