in reply to Run another script

There are many options:

Replies are listed 'Best First'.
Re^2: Run another script
by dsheroh (Monsignor) on Oct 19, 2007 at 15:03 UTC
    More options:
    • Use the PHP module's embedded interpreter to run the PHP within your Perl script (may or may not work; I just know this exists, I've never used it myself)
    • Given the similarities of PHP and Perl syntax, it may be simple to convert the PHP file to Perl and do all of the work in a single program. If the only purpose of the txt files is to communicate data to PHP, this could eliminate the need to create them at all.