I Need Script To echo user promotions Name On Web

Dec 19, 2015
114
15
53
Name of the script: don't have name
Functions of the script: It Print The User ServerGroups For Example i Have Admin + Activated + Minecraft It Show It Like That
Why do you want it: For My New Project For My TeamSpeak 3 Server
Screenshots: no screenshots
Orginal source (if any): No orginal source
Other notes: I Will Be ThankFull if You Can Help Me
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
Your project Is easy For TeamSpeak3 u can do
PHP:
                foreach(explode(",", $ts3_VirutalServer["client_servergroups"]) as $sgid)
                                                {
                                                $groups[] = $ts3_VirtualServer->serverGroupGetById($sgid);
                                                }
// after that do
        echo "Server Groups:" . implode('<br>', $groups) . "</div></h3>";

2. For Minecraft u need to Do a MySQL Connectiong With a plugin! and display it on web with MySQL_Fetch_all .. ROW etc.
 
Top