in reply to Marrying PHP and Perl together

one method would be to use a .php file along with a PHP exec() call to the perl code.

<? echo exec( "/some/Perl/That/outputssometing" ); ?>

Replies are listed 'Best First'.
Re: Re: Marrying PHP and Perl together
by JojoLinkyBob (Scribe) on Mar 27, 2001 at 04:39 UTC
    Desert coder Thanks! It works :)