Hi I wanted to call an executable file in php.I tried using system() function,but it does not work. How can this be done? Thanks, Aditi
have you tried
$retval=C:/path/to/command/command.exe;
C:/path/to/command/command.exe
http://www.php.net/manual/en/function.exec.php
try this or the passthru() function