$rank = mysql_query("SELECT Name,Level,Class,Online FROM entities ORDER BY Level DESC LIMIT $limit");
I'm pretty sure that is right... whenever I do
It always gives me a mysql_fetch_array error. I've checked and the database is populated, the columns exist, so what could be the issue?
I'm pretty sure that is right... whenever I do
Code:
while ($row = mysql_fetch_array($rank)) { ... }
It always gives me a mysql_fetch_array error. I've checked and the database is populated, the columns exist, so what could be the issue?