Re: [PHP] need help on system()

2001-07-11 Thread Marc van Duivenvoorde
I would do it this way . ? $quota = `/usr/bin/sudo /usr/bin/quota -v test`; // please mind that the command is between backtics and not quotes echo $quota; // It probably doesn't produce a nice looking output but you can change that yourself // This doesn't work

Re: [PHP] need help on system()

2001-07-11 Thread Marc van Duivenvoorde
hhhm, I played around a little and found another solution which you might find usefull ? exec(/bin/ls -al /home/marcd,$ls); Array($ls); $max = sizeof($ls); $num = 0; while ($num = $max) { echo $quota[$num],br\n; $num++; } ? This way you can execute any command and put the