I have an array which consist monthly information as shown below :
[appr] => Array
(
[0] => Array
(
[month] => August
[approd] => 23
)
[1] => Array
(
[month] => September
[approd] => 546
)
[2] => Array
(
[month] => October
[approd] => 234
)
)
I want the output as below
[appr] => Array(
August => 23,
September => 546,
October => 234
)
can anybody help me to achieve this using php.