0
正在使用當前的代碼是:
//$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在我的頁面中回顯。
(這應該顯示「用戶類型爲1」在我的導航欄)
'mysql_query'是一個死掉的函數,很快就會從語言中刪除。嘗試PDO。 – meagar