php – MYSQLi bind_result返回null

前端之家收集整理的这篇文章主要介绍了php – MYSQLi bind_result返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图输出我在查询中从数据库获取的变量,但没有返回任何内容.使用MysqLi编写的语句.

请参阅以下代码

$stmt = $con->prepare("SELECT first_name,last_name FROM transactions WHERE order_id = ?");
$stmt->bind_param('i',$order_id);
$stmt->execute(); 
$stmt->store_result();
$stmt->bind_result($first_name,$last_name);
$stmt->close();


// Output review live to page 
echo $first_name;

我看不出我错在哪里? PS我是准备好的陈述的新手,所以请放轻松我吧!

你忘记了获取结果的行. fetch().

试试看:

$stmt->bind_result($first_name,$last_name);
  $stmt->fetch();  // ----- > you forget that line to fetch results.
  $stmt->close();
原文链接:https://www.f2er.com/php/138706.html

猜你在找的PHP相关文章