Menu
×
×
Correct!
Exercise:Loop through an associative array and output the key and the value.
foreach($age as $x => $y) {
echo "Key=" . $x . ", Value=" . $y;
}
Not CorrectClick here to try again. Correct!Next ❯($age $x $y) { echo "Key=" . . ", Value=" . ; } |