I have an multidimensional array in php as follows.
MyArray
(
[0] => Array
(
[id] => c
[val] => 290
)
[2] => Array
(
[id] => a
[val] => 160
)
[3] => Array
(
[id] => v
[val] => 150
)
)
out of this array i want to extract array(c,a,v)
I am not able to extract this particular array out of the above multidimensional array.
How can i achieve it?