Hi... in my index.php page...can somebody please give me the script to include a cgi script within my index.php?
is it:
<script language="php"> virtual("/cgi-bin/file.pl"); </script>
any help would be appreciated
you want to include perl code into a php script? AFAIK that's not possible, for obvious reasons.
but you can make your php script call a perl script (ie, start its execution) - see system, exec and passthru functions on www.php.net