Greetings
Short version: I have a perl-script with multiple variables I would like to output to php.
Longer version: I have a script that indexes specific data about a large number of files, and saves these in three different associative arrays. These array I would like to output to php, if possible maintaining their array-structure. I need to show different elements of these arrays as text to the user, and I am doing all this in a html-environment. I just like php so much better that I do <?php ...?> whenever I get the chance ;-)
Hope there is help out there.
Note that I have up until now used ' $output = shell_exec('index.pl')' and then printed with <pre>$output</pre>, but the problem is that the only way I can get this to work is by printing the array inside the perl script, thereby pushing them all together in $output. I need the separate arrays.