This user's posts are being ignored.
Show Post?
Hi Chops,
I was wondering how to get this information supplies by our teamspeak vendor into a block on the right side of our webpage. They supplied a php file that I modified with our server info... here is what is on the inside.
Can you do anything with this?
<html>
<head>
<title>anVox Server Status</title>
<style type="text/css">
.listing { color: #000000; FONT-SIZE: 10px; FONT-FAMILY: verdana,arial,helvetica,sans-serif; }
.servername { color: #ffffff; FONT-SIZE: 14px; FONT-FAMILY: verdana,arial,helvetica,sans-serif; }
.serverdetail { color: #ffffff; FONT-SIZE: 10px; FONT-FAMILY: verdana,arial,helvetica,sans-serif; }
.serverdetail a:link, .serverdetail a:visited, .serverdetail a:active { color: #ffffff; text-decoration: none; }
.serverdetail a:hover { color: #ffffff; text-decoration: underline; }
</style>
</head>
<body>
<table align="left" border="0" cellpadding="0" cellspacing="0" width="400">
<tr>
<td>
<?
// Your anVox server IP
$server_ip="72.232.107.202";
// Your anVox server port
$server_port="13507";
// Your server type: 1 = Teamspeak, 2 = Ventrilo
$server_type="1";
// Outside table color
$table_color1="556d8c";
// Inside table color
$table_color2="ededed";
// Data list table color
$table_color3="FFFFFF";
// DO NOT EDIT THE LINE BELOW!!
@readfile("http://status.anvox.net/status.php?detail=$server_ip&detailport=$server_port&server_type=$server_type&table_color1=$table_color1&table_color2=$table_color2&table_color3=$table_color3");
?>
</td>
</tr>
</table>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="400">
<tr>
<td>
<font size="-2" face="verdana"><center>Hosted by <a href="http://www.anvox.com" target="_blank">www.anVox.com</a></center></font>
</td>
</tr>
</table>
</body>
</html>
Thanks Chop