Forum Moderators: coopster
I have a perl script that retrieves country name based on an ip. I need to pass it on to my php code as a variable.
I tried php's Perl extension but that won't work (as it's described in the previous post).
The "virtual" function almost does its job, however it does not work with ob_start (so I can not assign it to var) [bugs.php.net...]
that looks very simple: I only need to assign perl's output to php variable.
How do you guys accomplish that?
thanks,
D.
--index.php--
<?
$link = "mylink.cgi?id=$id&state=$state...";
?>
<frameset>
<frame src="<? echo $link;?> ">
</frameset>