Oct 4, 2005 #1 mes123 Programmer Joined Jul 29, 2005 Messages 62 Location GB Hi, My site is exclusivly coded in PHP but I have one perl script I'd like top be able to call. What is the best way of calling this perl script from within my PHP script? Thanks in advance.
Hi, My site is exclusivly coded in PHP but I have one perl script I'd like top be able to call. What is the best way of calling this perl script from within my PHP script? Thanks in advance.
Oct 4, 2005 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US You can't call it. You'll have to execute it externally. See http://www.php.net/manual/en/ref.exec.php for information on PHP's execution functions. Want the best answers? Ask the best questions! TANSTAAFL!! Upvote 0 Downvote
You can't call it. You'll have to execute it externally. See http://www.php.net/manual/en/ref.exec.php for information on PHP's execution functions. Want the best answers? Ask the best questions! TANSTAAFL!!
Oct 4, 2005 #3 KingCrab MIS Joined Apr 5, 2005 Messages 125 Location US Actually, you can, with some help. http://www.zend.com/php5/articles/php5-perl.php#Heading6 Upvote 0 Downvote