i have tried exec, system , not able open notepad even. using xampp on windows 7.
system("cmd /c notepad");
works here (notepad opened), should realize 2 things:
- if you're running apache service, won't have notepad windows pop because service running user in non-interactive fashion.
- it's normal no response long (perhaps indefinitely) because wait program finish. see
proc_open or popen more control.
Comments
Post a Comment