I run the php script as following:
<?php
//test.php
system("/usr/bin/sudo /usr/bin/quota -v test")
?>
php < test.php - I can get the output
in the browser: http://localhost/test.php - I cannot see any output
However,
<?php
system("finger");
?>
I can both get the output in the console and browser.
Does anybody know the reasons?
Thank you very much!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]