View difference between Paste ID: fUS3QXrG and W1KyH3XC
SHOW: | | - or go back to the newest paste.
1
$data = [];
2
foreach ($stmt as $row) {
3
    // $row[1] is the subscriber_id
4
    $data[$row[1]][] = $row[0]; // $row[0] is zone_name
5-
	$data[$row[1]][] = $row[2]; // 4row[2] is the sum amount
5+
	$data[$row[1]][] = $row[2]; // $row[2] is the sum amount
6
}
7
var_dump($data);