I'm a little confused. Are you trying to add the arrays together, the information in the arrays, or add the keys?
Examples of what I mean:
Add arrays together:
$u = array(0,0,1,2,3)
$c = array(1,2,3,4,5)
$result = array(1,2,3,4,5,1,2,3)
Add information in the arrays:
$u = array(0,0,1,2,3)
$c = array(1,2,3,4,5)
$resultu = 6
$resultc = 15
Add keys:
$u = array(0,0,1,2,3)
$c = array(1,2,3,4,5)
$result = array(3,4,5)
Or, did I miss everything entirely?