Reputation: 71
Currently I have this Array:
Array
(
[0]=>Array
(
[name]=> Name 1
)
[1]=>Array
(
[name]=> Name 2
)
)
How can I manipulate this array to display like this
Array(
[0] =>Name 1
[1] =>Name 2
)
Upvotes: 1
Views: 119