[Help] PHP Players indicator.

07/11/2009 15:14 damianpesta#1
Well i've been trying to get player's indicator done but I failed.So I am asking for help if anyone can help me in making one for my website?I am using LOTF.
07/11/2009 15:19 raidenx123#2
place this within your php code:
Code:
$res = mysql_query("SELECT count(*) FROM accounts WHERE Online=1;");
$val = mysql_fetch_array($res);
echo "<div style='top: 480; left: 550; position: absolute; z-index: 1; visibility: show;'>Total Characters Online: ".$val[0]."</div>";
Or put this in your html code:
Code:
<?php
$res = mysql_query("SELECT count(*) FROM accounts WHERE Online=1;");
$val = mysql_fetch_array($res);
echo "<div style='top: 480; left: 550; position: absolute; z-index: 1; visibility: show;'>Total Characters Online: ".$val[0]."</div>";
?>