I was wondering if someone could help me with the following problem
I want to add values to an array, overwriting the existing ones and keeping
the original intact.
array 1 looks like:
text
posted = Posted by
source = Bron
array 1 looks like:
text
posted = Posted by1
Now i would lik
Uhm found a solution for my own problem somewere else on this list..
credits go2 Andrey Hristov
";
$array1 = array("text"=>array("posted"=>"Posted by","source"=>"Bron"));
$array2 = array("text"=>array("posted"=>"Posted by1"));
print_r($array1);
print_r($array2);
function array_overlay(&$ar
2 matches
Mail list logo