我的get_result()
功能存在问题。
我的localhost
上运行良好但在服务器上的php脚本出现此错误
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”。)
我现在必须做什么?
答案 0 :(得分:0)
也许你的共享服务器无法支持它。看看这个。
答案 1 :(得分:0)