Call to undefined method mysqli_stmt::get_result

后端 未结 10 931
难免孤独
难免孤独 2020-11-21 05:10

Here\'s my code:

include \'conn.php\';
$conn = new Connection();
$query = \'SELECT EmailVerified, Blocked FROM users WHERE Email = ? AND SLA = ? AND `Passwo         


        
10条回答
  •  甜味超标
    2020-11-21 05:34

    Please read the user notes for this method:

    http://php.net/manual/en/mysqli-stmt.get-result.php

    It requires the mysqlnd driver... if it isn't installed on your webspace you will have to work with BIND_RESULT & FETCH!

    https://secure.php.net/manual/en/mysqli-stmt.bind-result.php

    https://secure.php.net/manual/en/mysqli-stmt.fetch.php

提交回复
热议问题