We are trying to execute a web-based cgi script from a cgi script. We have tried using back ticks, but
can't get the return result:
$text = `http://server.com/example.cgi?id=1`;
print $text;
Is it possible to do this?
Originally we tried an SSI, but it doesn't look like a CGI script can use SSIs.
Any suggestions. Thanks in advance.
