you can call UNIX commands in PHP by putting commands in back ticks (`). Similarly, shell_exec('...'); will run scripts too.
`
shell_exec('...');
popen() is also apparently useful, it allows you to open processes and talk to them.
popen()
Post a Comment
No comments:
Post a Comment