Radio Toobox Script (Please Help)

Talk about whatever.
Post Reply
Dabsterrocks
Posts: 5
Joined: Thu May 27, 2004 2:15 pm
Location: Canada
Contact:

Radio Toobox Script (Please Help)

Post by Dabsterrocks »

I am using the example script from the radio toolbox on my site it is
working fine , however it does not show my online status .

I know there is a script for this but im not sure what it is .

I had it on my site before i have tried
<?php echo $current_status; ?> , or just $status

here is an example of what it working

<?php
include("includes.php");
?>
<HTML>
<TITLE>THIS IS MY STUFF</TITLE>
<BODY>


<br>
<br>
<br>


I am playing <b><?php echo $current_song; ?></b> right now, it's totally cool!<br>
There are <?php echo $listeners; ?> out of <?php echo $max_listeners; ?> listening.<br><br>

The last <?php echo sizeof($lastsong); ?> songs I have played are:<br>
<?php
$i = 0;
while ($lastsong[$i])
{
echo $lastsong[$i];
echo "<br>";
$i++;
}
?>

Thanks Kindly,

Dabster
Dabsterrocks
Posts: 5
Joined: Thu May 27, 2004 2:15 pm
Location: Canada
Contact:

Post by Dabsterrocks »

Well I found out the answer to my question :

Just in case anyone else has this same problem

Because the server status is an array I had to use the following script


<?php echo $server[0]['status']; ?>

I found this out from a another post on this forum

Thanks

Dabster
Post Reply