PHP - Loops
Find the error in this PHP code snippet:
for ($i = 0; $i < 3; $i++) {
for ($j = 0; $j < 3; $j++) {
if ($j == 1) continue(2);
echo "$i$j ";
}
}Find the error in this PHP code snippet:
for ($i = 0; $i < 3; $i++) {
for ($j = 0; $j < 3; $j++) {
if ($j == 1) continue(2);
echo "$i$j ";
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions