Answers for "Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in C:\wamp64\www\West Africa Aquatics\index.php on line 113"

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
0

mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, bool given in

// Use double quotes for queries, or varibales can't be interpretated
$sql = "SELECT * FROM $usertable WHERE PartNumber = $partid";
Posted by: Guest on June-19-2021

Code answers related to "Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in C:\wamp64\www\West Africa Aquatics\index.php on line 113"

Browse Popular Code Answers by Language