2014-01-14 206 views
0

編輯::MySQL中的MySQL查詢不返回值?

正在使用當前的代碼是:

//$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」在我的導航欄)

+0

'mysql_query'是一個死掉的函數,很快就會從語言中刪除。嘗試PDO。 – meagar

回答

0

你正在尋找MySQL的功能是mysql_fetch_assoclink),而不是mysql_fetch_row

但是,請不要使用mysql_函數。鏈接到PHP手冊告訴你相同的。

我會建議試圖教你自己how to use the mySQL PDO。網上有很多很棒的教程。

+0

我打算繼續努力,但我在我的服務器上使用的是舊版本的PHP,因此目前它的安全。我將很快轉換到較新的代碼。 – user3175451