Hi,
My code is as follows, I adjusted it after seeing it posted here somewhere...
// Ping function
function ping($link) {
$link = preg_replace('![url]http://www.[/url]!','',$link);
$link = preg_replace('/:.*/','',$link);
$cmd = `ping -c1 -w1 $link`;
if (preg_match('!time=(.+) ms!', $cmd, $m)) {
print "(ping: " . $m[1] . ")";
} else {
print "<font color='red'><strong>DEAD</strong>";
}
}
Could it work?
Cheers,
Mike