Hi all.
I use WinXP with Apache 2 and PHP 4.3.
I'm trying to execute external programs from a PHP script...
And I've made a lot of testings without resuls...
Suposse that I want to execute notepad.exe (for instance)... I tried to do it using a lot of combinations...
exec("C:\WINDOWS\NOTEPAD.EXE");
shell_exec("C:\WINDOWS\NOTEPAD.EXE");
$result = "C:\WINDOWS\NOTEPAD.EXE";
Using an intermediate bat file too...
The case if that If I take look in the "Task Manager" I see the porcesses running there, I mean in the process view there are several instances of "NOTEPAD.EXE" running, but they are "hidden"...
I've readed several ways of solve this but no one of them worked for me...
Any hint will be great great apprettiated.
Best regards from spain...
b:.