I have an array whose values are all arrays of a specific format that looks like this:
Array
(
[0] => Array
(
[0] => 8227
[1] => 8138
)
[1] => Array
(
[0] => 8227
[1] => 8138
[2] => 7785
)
)
and I would like to have this:
Array
(
[0] => 8227
[1] => 8138
[2] => 7785
)
How can i do this ?
Thanks in advance....