Thank you
Gimp
Edited by Gimp, 25 May 2006 - 05:39 PM.
Posted 25 May 2006 - 03:47 PM
Edited by Gimp, 25 May 2006 - 05:39 PM.
Posted 27 May 2006 - 03:15 AM
<?php
$site = "http://www.yoursite.com";
if(fsockopen($site,80)===TRUE) {
echo $site." is up!";
}
else {
echo "$site is down :(";
}
?>
Posted 27 May 2006 - 04:29 AM
<?php $site = "http://www.yoursite.com"; echo (fsockopen($site,80)===TRUE) ? "$site is up!" : "$site is down!"; ?>
Posted 27 May 2006 - 10:23 AM
0 members, 1 guests, 0 anonymous users