-
What will be the output of the following PHP code ?
<?php
for ($num = 1; $num <= 5; $num++)
{
echo "The number is: $num \n";
}
?>
-
- The number is: 1
- The number is: 1
The number is: 2 - The number is: 1
The number is: 2
The number is: 3 - The number is: 1
The number is: 2
The number is: 3
The number is: 4 - The number is: 1
The number is: 2
The number is: 3
The number is: 4
The number is: 5
Correct Option: E
This runs a for loop from 1 to 5.