WARNUNG: MySQLI_Fetch_all () erwartet Parameter 1 mySQLi_Result, bool in C: newxammp htdocs Learn index.php in Zeile 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
Nagraj!