I try that link, when I try in .pl file, it doesn't do nothing.
I also read this link, PERL in PHP
<?php
print "Hello from PHP!\n";
$perl = new Perl();
$perl->require("script1.pl");
print "Bye!\n";
?>
Give me this:
Hello from PHP!
Fatal error: Class 'Perl' not found in C:\Inetpub\webaps\test2.php on line 4
I try include inside PHP script inside PERL script, doesn't work, so I try the PHP include of PERL file. No luck at all.
Do I need to import Perl class from PHP or something?