Hi Guys!
I cant find a way to show my data array the way i need it to be hope you can help me. i already tried using array_push(), json_encode() but still no result. basically what i am getting is like this
Array ( [0] => Array ( [name] => Boat + Cab [TOTAL] => 3 )
[1] => Array ( [name] => Bus + Boat [TOTAL] => 41040 )
[2] => Array ( [name] => Bus + Boat + Cab [TOTAL] => 840 )
[3] => Array ( [name] => Bus Only [TOTAL] => 14343.75 )
[4] => Array ( [name] => Door to Door [TOTAL] => 691073.75 ) )
But i need the data in this format
['Boat + Cab', 3],
['Bus + Boat', 41040],
['BUS + BOAT', 1000],
['Bus + Boat + Cab', 840]
....etc
What should i do?
Thanks Neil,