Postingan lainnya
sulisi untuk mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, bool given in gimana ya
<?php
$conn = mysqli_connect("localhost","root","","phpdasar2");
function query($query) {
global $conn;
$result = mysqli_query($conn, $query);
$rows = [];
while( $row = mysqli_fetch_assoc($result) ) {
$rows[] = $row;
}
return $rows;
}
function serch($Keyword) {
$query = "SELECT * FROM dmc WHERE
Nama Peserta LIKE '%$Keyword%' OR
No. Kpa LIKE '%$Keyword%'";
return query($query);
1 Jawaban:
<div>Query nya ada yang kurang tepat coba di perhatikan kembali ya,...<br><br>dan untuk error yang seperti ini:</div><pre>mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, bool given in</pre><div><br>dibacanya fungsi mysqli_fetch_assoc hanya menerima parameter hasil dari mysqli_query<br><br>semoga membantu😄</div>