Shoutcast or AIM etc Online Status (Rated 0)Description:
This shows if your shoutcast radio station or instant messenger is online.
Useful for adding into your signature on forums to show people information Code starts here
<?php
$check = @fsockopen ("127.0.0.1", 80,$errno, $errstr,1); // change 127.0.0.1 to your shoucast ip and 80 to the port
if($check) {
header('content-type: image/gif');
readfile('aimon.gif'); // change this to an image you want when shoutcast is on
} else {
header('content-type: image/gif');
readfile('aimoff.gif'); // change this to an image you want when shoutcast is off
}
?>
Submitted by Devscripts on 28-04-2003 21:28 |