warning: mysqli_result::fetch_array() expects parameter 1 to be int, string given code example
Example 1: Warning: mysqli_fetch_all() expects parameter 1 to be mysqli_result, bool given in C:\newxammp\htdocs\learn\index.php on line 11
$sql = "SELECT * FROM users";
$result = mysqli_query($db, $sql) or die( mysqli_error($db));
Example 2: Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, string given in
mysqli_fetch_array($result)
Example 3: mysqli_fetch_array() expects parameter 1 to be mysqli_result
$sql = "select * from privinsi";
$result = mysqli_query($connection,$sql);
while($r = mysqli_fetch_array($result))
{
}
Example 4: Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, string given in
mysqli_fetch_array($query)