A variable called $result
When print_r ($result);
It goes:
Array
(
[0] => iPhone
)
Array
(
[0] => iOS
)
Array
(
[0] => Safari
)
Seems like there are 3 Arrays in this $result, but I want to marge it to one and give theme order, I've tried array_merge(), and array_combine(), but none of theme get the result I want, what I really want is:
Array( 'iPhone', 'iOS', 'Safari' )
So I could output one of them using $results[0] or $results[1]...
How can I achieve that? Thanks alot.