any of you knows how can I execute a perl script from php?
| SitePoint Sponsor |
any of you knows how can I execute a perl script from php?
Well, you can use "exec" to execute anything your server can run, including Perl scripts; Google for "php exec" to get to the docs for it (and do mind the security warnings at the bottom of the page).
You can also use backticks:
Code:echo `ls -l`;
Bookmarks