<?php $array = [ [ 'month' => 'June', 'sale' => 98765 ], [ 'month' => 'May', 'sale' => 45678 ], [ 'month' => 'April', 'sale' => 213456 ], [ 'month' => 'August', 'sale' => 23456 ], [ 'month' => 'July', 'sale' => 12376 ], ]; echo implode(',',array_column($array,'month')); echo PHP_EOL; echo implode(',',array_column($array,'sale'));
You have javascript disabled. You will not be able to edit any code.