Thanks for the suggestions!
Trying Neumy's method first...
For some reason, getting no functionality and I think it has to do with the '=>' assignment operator in the line (doesn't like the greater than sign):
foreach($combined as $key=>$val)
I've even taken examples from the PHP manual and I can't get them to work; for example:
$fruits = array (
"fruits" => array ("a"=>"orange", "b"=>"banana", "c"=>"apple"),
"numbers" => array (1, 2, 3, 4, 5, 6),
"holes" => array ("first", 5 => "second", "third")
);
I'm disheartened