Forum Moderators: coopster
$values_in_array = count($uparray["$lowarray"])
for($i=0; $i<$values_in_array-1; $i++) {
print $uparray["$lowarray[$i]"];
}
Most likely the problem lies with $uparray["$lowarray[$i]"];
Nested arrays are all a part of the parent array... Using $uparray[$lowarray][$i]; instead should work. Also note that you don't need the quote marks when you're using a variable, they're only needed for a string.