Fatal error: Call to undefined method mysqli_stmt::fetch_array() [duplicate]

Using prepared statements there is no fetch_array(). Use mysqli_stmt::fetch() instead or to fetch multiple records use mysqli_result::fetch_all()

Check the manual: mysqli_stmt::fetch() or mysqli_result::fetch_all()

Leave a Comment