I have a fax application that allows command line parameters to it.
If I execute the command in the command line, all works 100%. Yet, if I run the exact same command through a Php script it doesn't do anything.
Here's an example:
Code: Select all
<?php
chdir("c:\\");
$output = system("C:\WINDOWS\System32\calc.exe");
?>This R driving me NUTS!!!!!
Please HELP