Q. What will be the output of the following PHP code?
Code:
<?php
for ($i = 1;$i <= 10;$i++){
if ($i == 6){
continue;
}
echo "$i ";
}
?>
β
Correct Answer: (A)
1 2 3 4 5 7 8 9 10