Answers for "mysqli_fetch_array() expects parameter 1 to be mysqli_result, bool given in E:\xampp\htdocs\php\crud\login.php on line 12"

PHP
0

Warning: mysqli_fetch_all() expects parameter 1 to be mysqli_result, bool given in C:\newxammp\htdocs\learn\index.php on line 11

#where you are running mysqli_query , add 'or die( mysqli_error($db)'
#e.g
$sql = "SELECT * FROM users";
$result = mysqli_query($db, $sql) or die( mysqli_error($db));
#$db being the variable holding the connection to db
Posted by: Guest on November-24-2020

Code answers related to "mysqli_fetch_array() expects parameter 1 to be mysqli_result, bool given in E:\xampp\htdocs\php\crud\login.php on line 12"

Browse Popular Code Answers by Language