in reply to CGI Script calling another
Here's what talexb is referring to:
use CGI qw/:cgi/; my $query = new CGI; if ($query->param('somefield') { print $query->redirect(-location=>'subsequent.pl'); } [download]