help me plzz

hamza32231

Active Member
Jan 13, 2016
16
0
75
Invalid title.
Name of the script: Client Info
Functions of the script: show the nickname and the ip and description and the country and the Uid and
Why do you want it: for my new panal
Screenshots: none
Orginal source (if any): none
Other notes: none
 
Dec 19, 2015
114
15
53
pm Me I can Help You
Name of the script: Client Info
Functions of the script: show the nickname and the ip and description and the country and the Uid and
Why do you want it: for my new panal
Screenshots: none
Orginal source (if any): none
Other notes: none
 
Dec 19, 2015
114
15
53
Notes:
3b) Tellling people to check their PM is not allowed (intention of selling in PM), PM them and wait for a reply.

quoted from this thread.


ahahah no you understood me wrong

i dont need help i'm telling him to send me meesage about what he need

and check if i can help or not

thanks anyway;)
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
It's easy and i happy I help you @hamza32231
Just add a ts3 connection code. , require libraries..
PHP:
<?php
foreach($ts3_VirtualServer->clientList() as $ts3_client) {
    if($SERVER['REMOTE_ADDR'] == $ts3_client['connection_client_ip']) {
        $nickname = $ts3_client['client_nickname'];
        $uid = $ts3_client['client_unique_identifer'];
        $ip = $ts3_client['connection_client_ip'];
        $desc = $ts3_client['client_description'];
        $country = $ts3_client['client_country'];
}
}
?>
<?php echo $nickname; ?>
<?php echo $uid; ?>
<?php echo $ip; ?>
<?php echo $desc; ?>
<?php echo $country; ?>
 
Mar 20, 2016
39
4
43
It's easy and i happy I help you @hamza32231
Just add a ts3 connection code. , require libraries..
PHP:
<?php
foreach($ts3_VirtualServer->clientList() as $ts3_client) {
    if($SERVER['REMOTE_ADDR'] == $ts3_client['connection_client_ip']) {
        $nickname = $ts3_client['client_nickname'];
        $uid = $ts3_client['client_unique_identifer'];
        $ip = $ts3_client['connection_client_ip'];
        $desc = $ts3_client['client_description'];
        $country = $ts3_client['client_country'];
}
}
?>
<?php echo $nickname; ?>
<?php echo $uid; ?>
<?php echo $ip; ?>
<?php echo $desc; ?>
<?php echo $country; ?>
you don't need <?php ?> for echo :)
 
Top