I am trying to trigger the running of a shell script using PHP. Essentially, when a user completes an action on our website programmed in PHP, we want to trigger a shell script which itself calls a Java file. Thanks in advance!
Asked
Active
Viewed 1,003 times
3 Answers
3
See shell_exec()
, exec()
and other Program execution functions

NullUserException
- 83,810
- 28
- 209
- 234
-
And you can execute the java file directly without invoking a shell script to invoke the java. for example. – Chris Sep 20 '10 at 18:57