Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MYSQLi bind_result is returning null

I am trying to output the variables that I get from the database in my query but nothing is being returned. Using MYSQLi prepared statements.

Please see code below:

$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;

Where am I going wrong?

like image 654
user3170837 Avatar asked Dec 26 '22 11:12

user3170837


1 Answers

You forgot the line to fetch the result. fetch().

Try that:

  $stmt->bind_result($first_name, $last_name);
  $stmt->fetch();  // ----- > you forget that line to fetch results.
  $stmt->close();
  
like image 78
echo_Me Avatar answered Jan 05 '23 06:01

echo_Me