The PHP Catcher
The PHP Catcher
Just curious whats wrong with this
The example2.php works I just made a new one to try to make a easily parsable thing for a few other scripts
Code: Select all
<?
include("includes.php");
?>
<?
print("IP:<br>\n"$ip);
print("DJ:<br>\n"$desc);
print("Song:<br>\n"$current_song);
print("Listeners:<br>\n"$listeners);
print("MaxListeners:<br>\n"$max_listeners);
print("BitRate:<br>\n"$bitrate);
print("Status:<br>\n"$status);
?>
print("IP:<br>\n".$ip."<br>\n");
print("DJ:<br>\n".$desc."<br>\n");
print("Song:<br>\n".$current_song."<br>\n");
print("Listeners:<br>\n".$listeners."<br>\n");
print("MaxListeners:<br>\n".$max_listeners."<br>\n");
print("BitRate:<br>\n".$bitrate."<br>\n");
print("Status:<br>\n".$status."<br>\n");
Duh, Im just used to print, question tho, i understand the main server is the "log" server, but is there a way to get each shout caster server's info with this? We use a round robin configuration and it would be nice if I could get each listener count in a easily parsable way
print("DJ:<br>\n".$desc."<br>\n");
print("Song:<br>\n".$current_song."<br>\n");
print("Listeners:<br>\n".$listeners."<br>\n");
print("MaxListeners:<br>\n".$max_listeners."<br>\n");
print("BitRate:<br>\n".$bitrate."<br>\n");
print("Status:<br>\n".$status."<br>\n");
Duh, Im just used to print, question tho, i understand the main server is the "log" server, but is there a way to get each shout caster server's info with this? We use a round robin configuration and it would be nice if I could get each listener count in a easily parsable way
-
- Posts: 5
- Joined: Sun Oct 31, 2004 5:47 am
- Location: Nottingham
- Contact: