好的,所以我有一个 PHP 页面,我有一个数据库。在我的数据库中,我有一个带有字段的表,其中一个字段称为accounttype,它是enum('n', 'm', 's')如果用户是N , 我试图在我的 PHP 页面上显示它应该说普通用户,如果用户是E专家用户或S超级用户...
我该怎么做呢?
PHP 页面顶部
<?php
// Query member data from the database and ready it for display
$sql = mysql_query("SELECT * FROM members WHERE id='$id' LIMIT 1");
while($row = mysql_fetch_array($sql)){
$phone = $row["phone"];
$country = $row["country"];
$state = $row["state"];
$city = $row["city"];
$accounttype = $row["accounttype"];
$bio = $row["bio"];
}
?>
我试图在页面上显示的位置 这是代码。现在它只是放置一个空白区域。
<span class="admin">Edward</span>
<span class="date">March 19, 2048</span>
<span class="tag"><?php echo "$accounttype"; ?></span>
<span class="comment"><a href="#">166 comments</a></span>