in reply to Calling a perl script from cgi

Hi Gremlin,

inside your test.pl you could use:
@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
or you use cgi.pm and send aredirection header to the client targetting to the url where your test2.pl resides.

Have a nice day
All decision is left to your taste