Answers for "warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, bool given in c:\xampp\htdocs\codewithharry\emp\update form.php on line 22"

PHP
0

Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, string given in

$sql = "select * from privinsi";
$result = mysqli_query($connection,$sql);
while($r = mysqli_fetch_array($result))
{
    // your code here
}
Posted by: Guest on January-24-2021
2

Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, string given in

mysqli_fetch_array($query)
Posted by: Guest on December-23-2020

Code answers related to "warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, bool given in c:\xampp\htdocs\codewithharry\emp\update form.php on line 22"

Browse Popular Code Answers by Language