I have installed Wampp Server. Now what I want is, if I open http://localhost.com/run.php it opens Notepad
I tried, all these three .. none of them executed notepad.
<?php exec("notepad.exe"); ?>
<?php shell_exec("notepad.exe"); ?>
<?php system("notepad.exe"); ?>
What is the solution? Please help!