jika saya mendapatkan kode Anda dengan benar, masalahnya ada di sini:
$rows = $result->fetchAll();
$numrows = count($rows);
echo "<p>" .$numrows . " results found for '" . $zoek . "'</p>";
// create while loop and loop through result set
while($row = $result->fetch()){
Jadi Anda melakukan fetchAll()
pertama dan kemudian Anda mencoba while($row = $result->fetch()){
. tetapi Anda tidak dapat mengambil lagi dari hasil yang sama.
jadi Anda harus mengubah header loop Anda menjadi :
foreach($rows as $row){
Jadi fragmen lengkapnya akan seperti:
$rows = $result->fetchAll();
$numrows = count($rows);
echo "<p>" .$numrows . " results found for '" . $zoek . "'</p>";
// create while loop and loop through result set
foreach ($rows as $row ){
semoga membantu :-)