help me plzz

hamza32231

Active Member
Joined
Jan 13, 2016
Messages
16
Reaction score
0
Points
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
 
Joined
Dec 19, 2015
Messages
114
Reaction score
15
Points
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
 
Joined
Dec 19, 2015
Messages
114
Reaction score
15
Points
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;)
 

0x0539

Retired Staff
Contributor
Joined
Jan 30, 2016
Messages
1,334
Reaction score
1,146
Points
254
Then there's no need to use PM, others may have similar questions that your answer could help them.
 

FarisDev

L oryh brx
Contributor
Joined
Jun 9, 2016
Messages
277
Reaction score
111
Points
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; ?>
 
Joined
Mar 20, 2016
Messages
39
Reaction score
4
Points
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