Home » PHP » PHP For Loops » Question
  1. What will be the output of the following PHP code ?
    <?php
    for ($num = 1; $num <= 5; $num++)
    {
    echo "The number is: $num \n";
    }
    ?>
    1. The number is: 1
    2. The number is: 1
      The number is: 2
    3. The number is: 1
      The number is: 2
      The number is: 3
    4. The number is: 1
      The number is: 2
      The number is: 3
      The number is: 4
    5. 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.



Your comments will be displayed only after manual approval.