Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  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
  6. }
  7. var_dump($data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement