<?php $array = [ ['month' => 'June', 'sale' => 98765], ['month' => 'May', 'sale' => 45678], ['month' => 'April', 'sale' => 213456], ['month' => 'August', 'sale' => 23456], ['month' => 'July', 'sale' => 12376], ]; $months = []; $sales = []; foreach ($array as ['month' => $months[], 'sale' => $sales[]]); echo json_encode($months); echo "\n---\n"; echo json_encode($sales);
You have javascript disabled. You will not be able to edit any code.