Home Tutorial Php Phpbeginners while & do..while Loop

 
 

while & do..while Loop
Posted on: February 5, 2011 at 12:00 AM
This section contains the detail about while & do..while Loop in PHP.

while & do..while Loop

while loop

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 statement

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

Related Tags for while & do..while Loop:


Ask Questions?

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.