Is it possible to call perl script from PHP code. For example , my code is <? include "template.php";// Template PHP script ... ...
xxxx.pl // I want to insert scricpt here
Hey,
It sure is. Try system(), exec(), passthru(), or even file() <-- if it's on a different server
http://www.php.net/manual/en/function.system.php http://www.php.net/manual/en/function.exec.php http://www.php.net/manual/en/function.passthru.php http://www.php.net/manual/en/function.file.php
Best Regards, Bill Zeller