[snip]
if I have two arrays, example:
$a = array ("one", "two", "three", "four", "two");
$b = array ("seven", "one", "three", "six", "five");
How can I get in another variable a new array with the same elements into $a
and $b.
[/snip]
http://www.php.net/array_merge
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

