Script add online players in site
#1
Hello LCKB people , if i say i would add a script online players in my website , can you help me ?

#2

Thats easy, just need to know PHP & Mysql...

 

a_enable=1 in t_users = 1 player online.

Select each rows with mysql & use php for convert it to string.

#3

i thought a_enable if player banned or not... xD

a_zone > -1 = Player Online

#4
This question was asked million times..

#5


SELECT Count(*) FROM t_users WHERE a_zone_num <> -1;

Knock yourself out.

#6

lil example

 

provided that there is already a MySQL connection in your Script

 

 

 

$select = "SELECT * FROM t_users WHERE a_zone_num <>-1 ;";
$result = $conn->query($select);
if ($result->num_rows > -1)
{
$online = mysqli_num_rows($result);
echo "Online Players : ".$online;
}



Forum Jump:


Users browsing this thread: 1 Guest(s)