How do i display how many players are online?
the following code does NOT work:
I need the correct code please.
thanks
the following code does NOT work:
Code:
mysql_select_db($mydbacc);
$res = mysql_query("SELECT count(*) FROM account WHERE online = 1");
$val = mysql_fetch_array($res);
echo "Total Characters Online: ".$val[0]."<br />";
thanks