in reply to CGI Question
which will capture the STDOUT of the test.pl, and put it in the variable $output. Another option is to use system:$output=`cgi-bin/test.pl`;
which will run the program, passing it the current processe's STDOUT and STDERR.system("cgi-bin/test.pl");
-- Dan
|
|---|