I'm using an if statement to declare whether a user is an admin, mod or neither with this code below, but its messing up by always making $status = "admin" even if that person is neither, this has really baffled me.
if($info['rights'] == "m") {
$status = '<font color="#FFFFFF">(mod)</font>';
}elseif ($info['rights'] == "a"); {
$status = '<font color="#FFFFFF">(admin)</font>';
}