This Blog is intended to collect information of my various Intrests,pen my opinion on the information gathered and not intended to educate any one of the information posted,but are most welcome to share there view on them
Sunday, September 11, 2011
Run shell commands in php
You can run shell commands in php,for example if you want to display a uptime in php example :
$results = exec(‘uptime’); //you need enter the command in exec filed
echo $results;
?>
or