>> I need to run an exe file from a PHP page. How would I
>> do this? I have tried passthru("C:\path\program.exe",
>> $results); but results always comes back as 1. What I
>> am I doing wrong?
try this:
$result = shell_exec("program.exe");
aleem
[ http://members.evolt.org/aleem/ ]