PHP - Loops
Find the error in this PHP code snippet that tries to skip the outer loop iteration when $j == 2:
for ($i = 0; $i < 3; $i++) {
for ($j = 0; $j < 3; $j++) {
if ($j == 2) {
continue 3;
}
echo "$i$j ";
}
}