PDA

View Full Version : [HELP} NEED A RADIO STATS SCRIPT



Jack!
09-06-2008, 07:07 PM
the title says it all

Matt.
09-06-2008, 07:19 PM
http://www.habboxforum.com/showthread.php?p=402388#post402388

That thread should help.

Moh
09-06-2008, 07:19 PM
No idea where this one comes from :P


config_radio.php


<?php

//Configuration
$scip = "127.0.0.1"; // ip or url of shoutcast server
$scport = "8000"; // port of shoutcast server
$scpass = "changeme"; // password to shoutcast server
//End configuration

?>


stats.php


<head>
<META HTTP-EQUIV="REFRESH" CONTENT="30">
</head>
<?php

include('config_radio.php');
$scfp = @fsockopen("$scip", $scport, &$errno, &$errstr, 10);
if(!$scfp) {
$scsuccs=1;
echo'<strong>Server is offline</strong>';
}
if($scsuccs!=1){
fputs($scfp,"GET /admin.cgi?pass=$scpass&mode=viewxml HTTP/1.0\r\nUser-Agent: SHOUTcast Song Status (Mozilla Compatible)\r\n\r\n");
while(!feof($scfp)) {
$page .= fgets($scfp, 1000);
}
$loop = array("STREAMSTATUS", "BITRATE", "SERVERTITLE", "CURRENTLISTENERS");
$y=0;
while($loop[$y]!=''){
$pageed = ereg_replace(".*<$loop[$y]>", "", $page);
$scphp = strtolower($loop[$y]);
$$scphp = ereg_replace("</$loop[$y]>.*", "", $pageed);
if($loop[$y]==SERVERGENRE || $loop[$y]==SERVERTITLE || $loop[$y]==SONGTITLE || $loop[$y]==SERVERTITLE)
$$scphp = urldecode($$scphp);

//echo'$'.$scphp.' = '.$$scphp.'<br>';
$y++;
}
$pageed = ereg_replace(".*<SONGHISTORY>", "", $page);
$pageed = ereg_replace("<SONGHISTORY>.*", "", $pageed);
$songatime = explode("<SONG>", $pageed);
$r=1;
while($songatime[$r]!=""){
$t=$r-1;
$playedat[$t] = ereg_replace(".*<PLAYEDAT>", "", $songatime[$r]);
$playedat[$t] = ereg_replace("</PLAYEDAT>.*", "", $playedat[$t]);
$song[$t] = ereg_replace(".*<TITLE>", "", $songatime[$r]);
$song[$t] = ereg_replace("</TITLE>.*", "", $song[$t]);
$song[$t] = urldecode($song[$t]);
$dj[$t] = ereg_replace(".*<SERVERTITLE>", "", $page);
$dj[$t] = ereg_replace("</SERVERTITLE>.*", "", $pageed);
$r++;
}

fclose($scfp);
}

if($streamstatus == "1"){
echo'
<strong>Current DJ</strong>: '.$servertitle.'<br/>
<strong>Current Listeners</strong>: '.$currentlisteners.'<br/>
<strong>Current Song</strong>: '.$song[0].';
}
if($streamstatus == "0")
{
echo'<strong>Radio is offline</strong>';
}
?>

Jack!
09-06-2008, 08:02 PM
ty u 2 i got what i need know

Want to hide these adverts? Register an account for free!