0

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  
)  
Community
  • 1
  • 1

1 Answers1

9
$array = $array[0];

Please learn some basics on arrays!

str
  • 42,689
  • 17
  • 109
  • 127