I have this multidimensional array coming from the database:
Array
(
[0] => Array
(
[0] => Thing1
)
[1] => Array
(
[0] => Thing2
)
)
I need to extract the data like this: Thing1, Thing2
I tried a lot of methods, but no one works. How can I do that?