Hi,
So I was working on our ASE at HabboXP and I noticed how poor ASE actually is, as we're rebuilding ours, and I saw that if one person was banned it would drag out x9999 and even more, so replace your php code getting the bans with this:
- Cheers.
So I was working on our ASE at HabboXP and I noticed how poor ASE actually is, as we're rebuilding ours, and I saw that if one person was banned it would drag out x9999 and even more, so replace your php code getting the bans with this:
PHP:
<?php
$getBans = mysql_query("SELECT * FROM bans");
while(($ban = mysql_fetch_array($getBans)))
{
echo "<tr><td>" . $ban['value'] ."</td><td>" . $ban['reason'] . "</td><td>" . $ban['added_by'] . "</td><td><a href='?url=banlist&unban=" . $ban['id'] . "'><b>Unban</b></a></td></tr>";
}
?>
- Cheers.