Possible Duplicate:
How to “flatten” a multi-dimensional array to simple one in PHP?
how do i turn
Array
(
[0] => Array
(
[id] => 33
[name] => Robb's Event
)
)
into this
Array
(
[id] => 33
[name] => Robb's Event
)