Can anyone explain why this:
$fp = popen('/bin/ls','r');
while(!feof($fp))
{
$inhalt = fgets($fp,300);
echo $inhalt; echo "<br>";
}
pclose($fp);
doesn't work ???
The user PHP runs under (the same as the user apache runs under) can execute shell commands.....
kr,
Japhy