This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
The
loop - Loops through a block of code as long as the specified condition is true.The while loop executes a block of code as long as the specified condition is true.
while (condition is true) {
code to be executed;
}
The example below displays the numbers from 1 to 5:
<?php $x = 1; while($x <= 5) { echo "The number is: $x <br>"; $x++; } ?>
This example counts to 100 by tens:
<?php $x = 0; while($x <= 100) { echo "The number is: $x <br>"; $x+=10; } ?>
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
Animated PHP icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon
Module 3 quiz