Re: [PHP-DEV] Call perl from PHP

2002-06-27 Thread Chhai Thach
I have tried exec(), passthru() but non of these return the array values. The only function that return me anything is system(), I think it returns the process number. What I want to do is able to query the perl script, and have data returned to PHP. Normal querying such as http://www.mydomain.c

Re: [PHP-DEV] Call perl from PHP

2002-06-26 Thread Scott Carr
What wrong with: exec('perl {script name}', $array); ? -- Scott Carr OpenOffice.org Documentation Maintainer http://documentation.openoffice.org/ Quoting Roman Neuhauser <[EMAIL PROTECTED]>: > > To: [EMAIL PROTECTED] > > From: "Chhai Thach" <[EMAIL PROTECTED]> > > Date: Tue, 25 Jun 2002 11:0

Re: [PHP-DEV] Call perl from PHP

2002-06-26 Thread Roman Neuhauser
> To: [EMAIL PROTECTED] > From: "Chhai Thach" <[EMAIL PROTECTED]> > Date: Tue, 25 Jun 2002 11:03:09 +0930 > Subject: [PHP-DEV] Call perl from PHP > > Does anyone know how to call a perl script from a php file and get the > returned data back to the PHP file? > > I have tried using virtual() but