我試過了數千個例子,但是沒有工作,我嘗試在id =的特定行上得到結果。MySQLI準備失敗的返回結果
我的代碼:
if ($stmt = $func->mysqli->prepare("SELECT * FROM monthlypaymentsrequestlist WHERE id = ?")) {
$stmt->bind_param('s', $user['userid']);
// Execute the prepared query.
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows > 0) {
while ($rows = $stmt->fetch_assoc()) {
echo $row['id'];
}
}
}
的錯誤,我得到:
Fatal error: Call to undefined method mysqli_stmt::fetch_assoc() in
我如何做正確?
您正在學習哪個教程? –
再次閱讀您的錯誤。 – Rikesh
php.net,也有千其他的餡餅和例子,我不知道如何使它正常工作。 – Ravg