in this code i get the error: Fatal error: Call to undefined method mysqli_stmt::fetch_array()
What is the problem?
$search= \"player\"; ($sql = $db
Using prepared statements there is no fetch_array(). Use mysqli_stmt::fetch() instead or to fetch multiple records use mysqli_stmt::fetchAll() Check the manual: mysqli_stmt::fetch() or mysqli_stmt::fetchAll()
fetch_array()
mysqli_stmt::fetch()
mysqli_stmt::fetchAll()