我的功能有问题get_result()
。
我的 php 脚本localhost
运行良好但在服务器上出现此错误
Fatal error: Call to undefined method mysqli_stmt::get_result()
我搜索了很多次,但我没有找到解决方案。我的代码:
$sql=$db->prepare("SELECT * FROM `news` WHERE cat = ? order by id desc limit 10");
$cat=$_GET['cat'];
$sql->bind_param('i', $cat);
$sql->execute();
$result=$sql->get_result();
if($result){
while ($row = $result->fetch_array()) { echo "something"; }
(“mysqli”和“mysqlnd”都已安装。)
我现在该怎么办?