in reply to Running PHP
php -q myscript.php
which means that you could run it from a Perl program:
my $ouput = `php -q myscript.php`;
The '-q' argument is for suppressing the HTTP headers. If you need them for some reason, just don't use -q.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Running PHP
by bradcathey (Prior) on Apr 16, 2005 at 19:10 UTC | |
by itub (Priest) on Apr 16, 2005 at 21:34 UTC | |
|
Re: Running PHP
by MonkPaul (Friar) on Apr 16, 2005 at 18:43 UTC |