Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. while ($row = $stmt->fetch(PDO::FETCH_ASSOC))
  2. {
  3. $current_month_sales [$row['day_month']] = $row['total_day'];
  4. }
  5.  
  6. current_month_sales":{
  7. "6":"59000.49",
  8. "8":"566300.00",
  9. "12":"23600.00",
  10. "13":"6852941.18",
  11. "14":"8125630.25",
  12. "16":"6875763.86",
  13. "17":"6970420.17"}
  14.  
  15. current_month_sales = [
  16. [6, 590000.49],
  17. [8, 566300.00],
  18. [12, 236000.00],
  19. [13, 6852941.18],
  20. [14, 8125630.25],
  21. [16, 6875763.86],
  22. [17, 6970420.17]
  23. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement