It appears you have not registered with our community. To register please click here ...
error_reporting(E_ALL);//Enter path or URL to your status file$status_file = "http://www.example.com/status.xml";//Enter allowed time difference between current time and status.xml time in seconds$interval = "300";simplexml_load_file($status_file)or die("Cannot Open Status File!");$xml=new simpleXMLElement($status_file,NULL,TRUE);$time = $xml->B3Status;$status_time = strtotime($xml['Time']);$now = time();$time_difference = $now - $status_time;if($time_difference < $interval) echo "Your Server is Online";else echo "Your Server is Offline";
date_default_timezone_set('America/Los_Angeles');