• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Mysql + PHP] SOLVED

PHP:
$playersonline = $SQL->query('select count(*) as count from players where online = 1;')->fetchAll();
//$playersonline['count']
 
did u try to print comment?
PHP:
$playersonline = $SQL->query('select count(*) as count from players where online = 1;')->fetch();
echo $playersonline['count'];
 
Back
Top