<?// checks if the server is online or offline$i = "255.255.255.255";$p = "6000";$c = @fsockopen($i, $p, $ERRNO, $ERRSTR, 1);// create a 741*17 image$online = imagecreate(741, 17);$offline = imagecreate(741, 17);// text variables$bg = imagecolorallocate($im, 0, 0, 0);$textcolor = imagecolorallocate($im, 0, 160, 0);$bg2 = imagecolorallocate($im2, 0, 0, 0);$textcolor2 = imagecolorallocate($im2, 255, 40, 0);imagestring($online, 5, 0, 0, " On" , $textcolor);imagestring($offline, 5, 0, 0, " Off" , $textcolor2);// output the imageheader("Content-type: image/png"); if($c) { echo imagepng($online); } else { echo imagepng($offline); }?>