### SETUP
### change the ip and port below, optionally add &tags to end of file_get_contents to hide content
### SHOUTCAST STATUS VIEWER (MAKEAVOICE)
### get status code from www.makeavoice.com/shoutcast
if (!$ip) $ip = "67.212.173.250";
if (!$port) $port = "8440";
### optional settings to hide content
### &link=off
### &title=off
### &song=off
### &listeners=off
### &maxlisteners=off
### &bitrate=off
### default, show all
if ($ip and $port) {
$statuscode = file_get_contents("http://makeavoice.com/shoutcast/viewerscript.php?ip=$ip&port=$port");
echo $statuscode;
}
?>