I am trying to copy the contents of an array generated from a Perl script into an array on a PHP page. Is this possible?
Current code in PHP file:
$campaigns_array[][] = shell_exec('recent_campaigns.pl $companyID');
recent_campaigns.pl runs some mySQL queries and creates an array from it. I don't know how to get that array from the Perl script.
Thanks in advance.