running applications
Posted: Sat Jun 01, 2002 9:23 am
Does anyone know how to run applications or shells from a php script?
Any help is appreciated.
THANKS
Any help is appreciated.
THANKS
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
exec("command");Code: Select all
system("command");Code: Select all
echo 'command';