Greetings! I have a MySQL database installed on my domain, and I'm trying to access the contents of that database with prepared statements (to prevent SQL injections). Unfortunately, when I try to do a SELECT query and get the results back with get_result(), I just get the error:
Fatal error: Call to undefined method mysqli_stmt::get_result()
I understand that I need mysqlnd installed, and I need to have a PHP version of 5.3 or higher, but both of those conditions are met and the code still is not working. Has anybody else had this problem, and do you know of any solution?
Fatal error: Call to undefined method mysqli_stmt::get_result()
I understand that I need mysqlnd installed, and I need to have a PHP version of 5.3 or higher, but both of those conditions are met and the code still is not working. Has anybody else had this problem, and do you know of any solution?