Hi, is it possible to use the fetch_all()
, fetch_assoc()
etc. from the the MySQLi_Result
class with a prepared statement from the MySQLi_STMT class?
I've done it using the query()
method in the Mysqli class (and by escaping trough mysqli_real_escape_string()
), but not using statements with binding parameters.
I'm considering using PDO
thanks!