Hallo,
I would like to execute a shell script froma PHP file
exec ....
and use the command output in php.
Is there any way to use directly command output with php or should I send the output to a file before ?
Thank you very much
try this:
$output = `ls`; echo $output;