How can I run an exe via a
PHP script?
I tried something like this just to run notepad:
- PHP: Select all
exec('notepad.exe', $o, $r);
But I don't think that is the right way.
Could someone explain how I can run an executable file by giving the path to it?