I have an array like this:
Array
(
[0] => Array
(
[0] => element 1
[1] => Array
(
[0] => white house history
[1] => white house historical association
[2] => white house hotel istanbul
[3] => white house high school
)
)
[1] => Array
(
[0] => element 2
[1] => Array
(
[0] => white kilt hose
[1] => white knight hose
[2] => white house kennels
[3] => white house kinsale
)
)
[2] => Array
(
[0] => element 3
[1] => Array
(
[0] => white house news
[1] => white house nannies
[2] => white house number
[3] => white house nominations
)
)
I want to create a new array that contains only elements from inside each array:
[0] => white house history
[1] => white house historical association
[2] => white house hotel istanbul
[3] => white house high school
[4] => white kilt hose
[5] => white knight hose
[6] => white house kennels
[7] => white house kin sale
[8] => white house news
[9] => white house nannies
[10] => white house number
[11] => white house nominations
Does anybody know how to do this?