我有我的代碼問題,我不明白什麼是真的錯了。 我想對登錄ID從表中數據庫中的用戶ID,但它給)mysql_fetch_assoc()期望參數1是給定的資源數組
mysql_fetch_assoc的錯誤(預計參數1是資源數組給定 .....
調用的功能...
$login_id= $_SESSION['a_id'];
$result=$add_task -> get_id_from_login_id($login_id);
while($id=mysql_fetch_assoc($result)) {
echo $id;
}
,並在功能我有這樣的代碼
$SQL="SELECT id FROM admin WHERE LoginID='$login_id'";
return $this->execute_sql($SQL);
沒有MySQL的功能得到已過時年前? – 2013-07-25 08:56:16
錯誤信息的哪部分不清楚?如果你寫了'mysql_fetch_assoc('hello world')'你會期望這個工作嗎? – Jon
我建議你閱讀[this](http://stackoverflow.com/questions/60174/how-to-prevent-sql-injection-in-php)。 –