in reply to How do I make one CGI script send the user to another CGI script?

CGI.pm offers a redirect function
use CGI; my $url = 'myotherscript.pl?parm1=value1&etc=etc'; print CGI::redirect($url);
As another answer noted, do this before any "print header" or similar
  • Comment on Re: How do I make one CGI script send the user to another CGI script?
  • Download Code