Possible Duplicate:
Pinging an IP address using PHP and echoing the result
How do you ping an ip addresses in php. and give the the results as if you are on cmd program in windows
<?php
system(‘ping -c 192.168.0.104’); // Ping IP address.<br>
echo “pinged”;<br>
?>