in reply to Calling a perl script from cgi
or you use cgi.pm and send aredirection header to the client targetting to the url where your test2.pl resides.@response = `perl test2.pl`; # but then test2.pl has to send its output to STDOUT, so # don't redefine STDOUT targetting to afile or so # and note that if it dies or throws warning that they # are part of that response
|
|---|