Hi
I am trying to print out the output from linux command in php. from the command line i am able to view the output, but when i run it from a browser there is no out put. anyone who can assist?
$ex1="ssh myname@server tail -10 /mnt/data/stat/status-rx.log";
$output1=`$ex1`;
echo "<pre>$output1</pre>";
any help will be appreciated.