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 once, and then repeats the loop as long as the specified condition is true.The
loop will always execute the block of code once, it will then check the condition, and repeat the loop while the specified condition is true.do {
code to be executed;
} while (condition is true);
The example below first sets a variable $x to 1 ($x = 1). Then, the do while loop will write some output, and then increment the variable $x with 1. Then the condition is checked (is $x less than, or equal to 5?), and the loop will continue to run as long as $x is less than, or equal to 5:
<?php $x = 1; do { echo "The number is: $x <br>"; $x++; } while ($x <= 5); ?>
Note: In a
loop the condition is tested AFTER executing the statements within the loop. This means that the loop will execute its statements at least once, even if the condition is false. See example below.This example sets the $x variable to 6, then it runs the loop, and then the condition is checked:
<?php $x = 6; do { echo "The number is: $x <br>"; $x++; } while ($x <= 5); ?>
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