Pink
Pink

Reputation: 161

PHP Perl combination

I have developed an interface that takes data from the users. I need to take this data to a perl script that I have already written. Now the problem is that I am not able to figure out how to call the Perl script automatically from the PHP interface. I don't have enough experience with PHP, so have no clue how to internally call the Perl script.

Upvotes: 0

Views: 115

Answers (1)

Jon
Jon

Reputation: 437386

You are probably looking for exec, but take a look at the left hand sidebar in case some other function from that family is more suitable.

Upvotes: 1

Related Questions