I have a very simple PHP script to try to use the exec command. The code is
<?php
// outputs the username that owns the running php/httpd process
// (on a system with the "whoami" executable in the path)
echo("test<br>");
echo exec('whoami');
echo("test");
?>
However when I access the page, it just prints out:
test
test
It does not print the output from "whoami" command, which when run from command line displays
me
What is the problem here? I cannot work it out.
Thanks a lot!

whoamipresent? – Ronnie Feb 23 at 2:16