Hi Everyone!
I noted that this method requires the mysqlnd driver. I know also that the MySQL Native Driver is for PHP version 5.4.0 now the default for all MySQL extensions (i.e., mysql, mysqli and PDO_MYSQL).
I used phpize to compile mysqlnd.
if (extension_loaded('mysqlnd')) {
echo 'extension mysqlnd is loaded'; //works
}
But when I call to mysqli_stmt::get_result(), PHP give me "PHP Fatal error: Call to undefined method mysqli_stmt::get_result()".
I don't know why?
Please give me helpful hints.
Thanks in advance.