EDIT ::
目前使用的代码是:
//$username= 'lmfsthefounder';
$type = "SELECT account_type from user_attribs WHERE username='lmfsthefounder';";
$type_again = mysql_query($type);
$row = mysql_fetch_row($type_again);
$usertype = $row['account_type'];
echo $usertype;
返回如下:首页登录注册用户类型
当我在mysql查询资源管理器中搜索此查询时,它显示值为1.我需要1在我的页面中回显。
(这应该在导航栏中显示'Usertype为1')
答案 0 :(得分:0)
您要查找的mysql函数是mysql_fetch_assoc
(link)而不是mysql_fetch_row
。
但请,请不要使用mysql_函数。 PHP手册的链接告诉你相同的内容。
我建议你自己动手how to use the mySQL PDO。网上有很多很棒的教程。