A
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 ";
}
?>
for ($i = 1;$i <= 10;$i++){
if ($i == 6){
continue;
}
echo "$i ";
}
?>
- Correct Answer - Option(A)
- Views: 31
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.