if $user['status'] present number just make something like:
PHP Code:
<?php
$status = array(0=>'Banned', 1 => 'Admin', 2 => 'Supporter', 3 => 'Normal', 5 => 'Moderator');
?>
and, later in code:
HTML Code:
<td bgcolor="#222222"> <?=$status[$user['status']]?></td>