Does anyone know how to run applications or shells from a php script?
Any help is appreciated.
THANKS
running applications
Moderator: General Moderators
run applications
There are several ways to run executable files:
or
or with quotes:
Code: Select all
exec("command");Code: Select all
system("command");Code: Select all
echo 'command';