Answers for "mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in exploit"

0

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))
{
    // your code here
}
Posted by: Guest on January-24-2021
-1

mysqli_fetch_row() expects parameter 1 to be mysqli_result, boolean given in

change that if statment to

  if(!$result) {
Posted by: Guest on March-11-2021

Code answers related to "mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in exploit"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language