Q. What will be the output of the following PHP code ?
Code:
<?php
for ($num = 1; $num <= 5; $num++)
{
echo "The number is: $num \n";
}
?>
β
Correct Answer: (D)
The number is: 1 The number is: 2 The number is: 3 The number is: 4 The number is: 5