How can we execute linux commands from php programs??
- by puspa
I want to see output of the following code in the webbrowser:
code:
$var = system('fdisk -l');
echo "$var";
?
When i open this from web browser then no output in the web browser. So How can I do this?? Please help !
Thanks
Puspa