The do...while statement always execute the block of code once, then check the condition, and repeat the loop until the condition is true.
Syntax
do
{
code to be executed;
}
while (condition);
e.g.
Here we define i = 1, and then increment i with 1. The code first execute i=1+1, print 2; then it checks the further condition. The loop continues until i reaches to either 5 or less than 5.
<?php
$i=1;
do
{
$i++;
echo “The number is “ . $i . “<br />”;
}
while ($i<=5);
?>
Output:
The number is 2
The number is 3
The number is 4
The number is 5
The number is 6
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.