Having a bit of a brainfart here, I've got an array that looks like this:
Array (
[0] => Array ( 'fruit' => 'orange', )
[1] => Array ( 'fruit' => 'apple', )
)
annnnnnnnd it's got to end up like this:
Array (
[0] => 'orange'
[1] => 'apple'
)
How do I do this?