显示致命错误

时间:2017-07-17 13:50:21

标签: php-7 php-5.3

致命错误:未捕获错误:在/home/prasanth/projects/ishen1/index.php:49中调用未定义函数mysqli_result()堆栈跟踪:#0 {main}抛出  如何解决这个问题

1 个答案:

答案 0 :(得分:-1)

根据此答案https://stackoverflow.com/a/17707384/8284461,该功能效率低下,您可以使用mysqli_fetch_assoc()代替。例如:

while($row = mysqli_fetch_assoc($result)) {
   $id = $row['ID'];
   $name = $row['name']; 
   etc..
}