Nieuw lid |
|
<?
$clink = "http://www.sitemasters.be/index.php";
$haaldomein = parse_url($clink);
$haaldomein = $haaldomein[host];
$server123 = gethostbyname($haaldomein);
$poort123 = 80;
$timeout123 = 10;
if ($server123 and $poort123 and $timeout123) {
$verbinding123 = @fsockopen("$server123", $poort123, $errno, $errstr, $timeout123);
}
if(!$verbinding123) {
echo"Uhm... $clink is offline (of bestaat gewoon niet)";
} else {
echo"Yeh... $clink is helemaal online! (en bestaat dus gewoon)";
}
?>
<? $clink = "http://www.sitemasters.be/index.php"; $haaldomein = $haaldomein[host]; $poort123 = 80; $timeout123 = 10; if ($server123 and $poort123 and $timeout123) { $verbinding123 = @fsockopen("$server123", $poort123, $errno, $errstr, $timeout123); } if(!$verbinding123) { echo"Uhm... $clink is offline (of bestaat gewoon niet)"; } else { echo"Yeh... $clink is helemaal online! (en bestaat dus gewoon)"; } ?>
zoiets? |