Execuete Executable file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hardikmehta
    New Member
    • Aug 2006
    • 3

    Execuete Executable file

    Hello All,

    I need help from all of u.

    Is there possible in PHP to execute executable file?

    If i want to run a.exe then it is possible in php to run this .exen file?

    Awaiting for your reply.

    Thanks,
    Bye
    Hardik Mehta
  • pasupathi
    New Member
    • Aug 2006
    • 5

    #2
    i have a solution...
    try it out
    <? php
    $a = @shell_exec("pa th/notepad.exe");
    echo $a;
    ?>

    Comment

    Working...