Re: [PHP] making php and perl talk to each other...

2002-11-19 Thread 1LT John W. Holmes
If they are on the same machine and executable from the command line, then you can use exec(), system(), backtics, etc to get the output. If they are on another machine (or not executable) and only available through a HTTP interface, then just use fopen to open the address and read the output

Re: [PHP] making php and perl talk to each other...

2002-11-19 Thread BigDog
If you are running them as commandline apps you can just pipe | the output to another program i.e. phpapp.php | perlapp.pl That should work as long as you deal with the arguments properly... On Tue, 2002-11-19 at 09:50, Kelly Meeks wrote: Is there any way to get a php script to grap the