Page 1 of 1

running applications

Posted: Sat Jun 01, 2002 9:23 am
by ozmodiar
Does anyone know how to run applications or shells from a php script?

Any help is appreciated.

THANKS

Posted: Sat Jun 01, 2002 11:38 am
by volka
yes the manual does ;)

run applications

Posted: Mon Jun 10, 2002 8:09 am
by ulysse
There are several ways to run executable files:

Code: Select all

exec("command");
or

Code: Select all

system("command");
or with quotes:

Code: Select all

echo 'command';