I have an array that looks like this....
Array
(
[result] => Success
[finals] => Array
(
[0] => Array
(
[id] => 633
[name] => RESULT84
)
[0] => Array
(
[id] => 766
[name] => RESULT2
)
[0] => Array
(
[id] => 22
[name] => RESULT1
)
)
)
Using PHP, I am trying to create another array from it that only contains the [name] field.
Do I need to create a new array from this or is there a way to use it as is?