Thread
:
any php studs arround
View Single Post
02-01-2009, 05:04 AM
frank7799
Confirmed User
Industry Role:
Join Date: Jul 2003
Location: In the middle of nowhere...
Posts: 1,974
Try it with array_merge and a loop:
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
Maybe thatīs what you are looking for?
frank7799
View Public Profile
Find More Posts by frank7799