Answers for "warning: mysqli_result::fetch_all():"

0

php undefined function mysqli_fetch_all()

$returnResult = []; //initialise empty array
while($row = $result->fetch_assoc())
{
    $returnResult[] = $row;
}
Posted by: Guest on June-30-2021

Code answers related to "warning: mysqli_result::fetch_all():"

Browse Popular Code Answers by Language