0
<?php
    require( '../connect_db.php' ) ;
    $query = $dbc->query('SELECT * FROM customer');
    while($row = $query->fetch(PDO::FETCH_ASSOC)) {
        echo $row['clientid'].' '.$row['inital'].' '.$row['firstname'].' '.$row['lastname'].' '.$row['mobile'].' '.$row['landline'].' '.$row['email'].' '.$row['address'].' '.$row['postcode'].' '.$row['accessibility'];
    }
?>

但给了我一个致命错误:在第 13 行的 list_customer.php 中调用未定义的方法 mysqli_result::fetch()

4

2 回答 2

0

浏览一下mysqli_result 类的文档,就可以确认该类确实没有这样的方法fetch

有关可用方法,请参见该页面。

于 2013-02-16T22:00:32.913 回答
-1

Mysqli 没有方法 fetch,你可能是指 fetch_assoc()

于 2013-02-16T22:00:24.063 回答