在我的 MySQL 表中,有一行标记为“状态”。有 3 个可能的值。我如何利用 PHP 在状态下将“Unbanned”与“0”相呼应?与“1”相对的“禁止”和与“3”相对的“临时禁止”?
我将如何使用 php 在 MySQL 中显示“UnBanned”而不是 0?我为此使用了一张桌子。
<?
while($row = $result->fetch_assoc()){
echo'<td>' . $row['player'] . '</td>';
echo'<td>' . $row['admin'] . '</td>';
echo'<td>' . $row['reason'] . '</td>';
echo'<td>' . $row['created_at'] . '</td>';
echo'<td>' . $row['expires_at'] . '</td>';
echo'<td>' . $row['state'] . '</td>' . '</tr>';
}
?>
非常感谢所有帮助:)