$returnResult = []; //initialise empty array while($row = $result->fetch_assoc()) { $returnResult[] = $row; }
$array = array(); while($row = $result->fetch_assoc()) $array[] = $row;