Welcome Guest, Not a member yet? Register   Sign In
butuh bantuan
#2

Coba pakai fasilitas ping server...


Check this script:

<?php
function ping($host) {
exec(sprintf('ping -c 1 -W 5 %s', escapeshellarg($host)), $res, $rval);
return $rval === 0;
}

$hosts_to_ping = array('10.140.206.123', '127.0.0.1');
?>

<ul>
<?php foreach ($hosts_to_ping as $host): ?>
<li>
<?php echo $host; ?>
<?php $up = ping($host); ?>
(<img src="<?php echo $up ? 'on' : 'off'; ?>"
alt="<?php echo $up ? 'up' : 'down'; ?>">)
</li>
<?php endforeach; ?>
</ul>

source: http://www.dynamicdrive.com/forums/showt...g-with-PHP
Reply


Messages In This Thread
butuh bantuan - by fy25 - 12-26-2016, 06:40 PM
RE: butuh bantuan - by uyak - 01-05-2017, 08:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB