The while loop iterate until provided condition is true. Given below the syntax :
while (condition)
{
code to be executed;
}
Example
<html>
<body>
<?php
$j=1;
while($j<=3)
{
echo "Value of j" . $j . "<br />";
$j++;
}
?>
</body>
</html>
Output :
Value of j 1
Value of j 2
Value of j 3
The do-while loop always executes its block of code at least once. Given below the syntax :
do
{
code to be executed;
}
while (condition);
First it executes code and then checks the condition. It it is true, then loop iterate through further. Given below the example :
Example :
<html>
<body>
<?php
$j=1;
do
{
$j++;
echo "Value of j" . $j . "<br />";
}
while ($j<=3);
?>
</body>
</html>
Output :
Value of j 2
Value of j 3
Value of j 4
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.