RE: [PHP-WIN] Re: Executing .exe files Issues

2009-01-22 Thread George Pitcher
>| "Alice Wei" wrote in message >| news:snt101-w180f682380dc32dbf85bf9f0...@phx.gbl... >| >| Hi, PHP Window Users: >| >| I have a snippet of code as in the following: >| >| | $filename="Test123.txt"; >| shell_exec("C:\Inetpub\wwwroot\hello.exe -f$filename") or die ("Failed"); >| >| ?> >| The hel

[PHP-WIN] Re: Executing .exe files Issues

2009-01-22 Thread Frank Stanovcak
"Alice Wei" wrote in message news:snt101-w180f682380dc32dbf85bf9f0...@phx.gbl... Hi, PHP Window Users: I have a snippet of code as in the following: The hello.exe was written in C and is meant to produce 6 files. The issue here is that when I tried to run the PHP here, I keep on seeing "F

[PHP-WIN] Executing .exe files Issues

2009-01-22 Thread Alice Wei
Hi, PHP Window Users: I have a snippet of code as in the following: The hello.exe was written in C and is meant to produce 6 files. The issue here is that when I tried to run the PHP here, I keep on seeing "Failed". Am I not supposed to execute exe files with this method? Any tip on th