This is my associative array .
Array ( [month] => June [sale] => 98765 )
Array ( [month] => May [sale] => 45678 )
Array ( [month] => April [sale] => 213456 )
Array ( [month] => August [sale] => 23456 )
Array ( [month] => July [sale] => 12376 )
I want to convert it into two strings, like this
["June", "May", "April", "August", "july"]
and another one like this
[98765 , 45678 , 213456 , 23456 , 12376 ]
I have used Implode function but I think I am missing something. Can anybody please help ?