Input
Output
<?php $score = [ [100, 221], [59, 54], [10, 21] ]; for ($i = 0; $i < 3; $i++) { for ($j = 0; $j < 2; $j++) { echo "Element[$i][$j] = " . $score[$i][$j] . "\n"; } } ?>