So The Problem Is With My Rank On Webs It Only Shows Status 0 I Want To Make It Show Status 5 =VIP Here The Code For My Lvl Rank Section Can Someone Please Help Me
PHP Code:
$sql = "SELECT
c.Level as Level,
c.CharName as CharName,
c.Job as Job
FROM
characters as c
LEFT JOIN
accounts as a
ON
(c.Account = a.AccountID)
WHERE
a.Status = 0
ORDER BY
c.Level
DESC
LIMIT 0,20
";
$result = @mysql_query($sql) or die(mysql_error());






