hi,
can anyone help me how to return a value from perl script (not all of them) to php program, please?
Thanks
for example:
-------------
p1.pl
-----------
print "this is a test\n";
$i = 10;
print STDOUT "PERL $i\n";
------------------------
p2.php
------------------
<?php
ob_start();
...