Ok I have the following multidimensional array:
Array ( [1] => Array ( [0] => 0 [1] => 2 ) [2] => Array ( [0] => 1 ) )
I would like to have the following array:
[1] 0 [2] 1 [1] 2
Is this possible to do?
Nope. Keys, have to be unique.
However, take a look at PHP.net man page for array_merge. Some users have a 'fix' for exactly your problem.
(see the very top post) http://us3.php.net/manual/en/function.array-merge.php