PDA

View Full Version : Little Question And Help Please ;]


Atheist
25-06-2008, 12:52
Hello Members
i need a code PHP who tell me a statistics to my teamspeak , exactly my UP time and My users On line something like in tsviever :

User online 139 / 500
Channels 486
Server uptime 14D 06:33:39


Something Like This ;]


Maybe In This forum people help me with do this

Thanks. :)

maxi1990
25-06-2008, 18:17
Requirement: You need the cyts PHP library

<html>
<body>
<?php
$host = "127.0.0.1";
$qport = "51234";
$udpport = "8767";
include("cyts.class.php");
$ts = new cyts();
$ts->connect($host, $qport, $udpport);
$data = $ts->info_serverInfo();
$maxusers = $data["server_maxusers"];
$useronline = $data["server_currentusers"];
$channels = $data["server_currentchannels"];
$seconds = $data["server_uptime"];
$time = sprintf("%dD %02d:%02d:%02d", $seconds/60/60/24, ($seconds/60/60)%24, ($seconds/60)%60, $seconds%60);
// start output
echo "User online " . $useronline . " / " . $maxusers . "<br>\n";
echo "Channels " . $channels . "<br>\n";
echo "Server Uptime " . $time . "<br>\n;"
?>
</body>
</html>