in reply to Re^2: Running CGI script within another cgi script
in thread Running CGI script within another cgi script
Another is to set your buffers to autoflush and send an End-Of-Transmission character:print CGI->redirect(...); close STDOUT;
I've never actually had to do something like this, so others might have a more elegant solution.$|=1; print CGI->redirect(...); print chr(4); # EOT
|
|---|