OTalPortista
Active Member
- Jul 23, 2018
- 44
- 7
- 98
How to get all users in database ts3 to numbers
With ts3 php framework?If you mean to get the amout of users in the ts3 database. You can use "clientdblist -count".
No, that was just normal query. But you can also use just execute the query with ts3phpframework or use clientCountDb()With ts3 php framework?
Ewenjo can u give me a example code?
<?php
require_once("libraries/TeamSpeak3/TeamSpeak3.php");
$ts3 = TeamSpeak3::factory("serverquery://serveradmin:[email protected]:10011/?server_port=9987");
$count = $ts3->clientCountDb();
echo $count;