Home Tutorial Php Phpbasics Tutorial PHP Do While Loop

 
 

PHP Do While Loop
Posted on: February 15, 2010 at 12:00 AM
In the current tutorial you will come to know about Do-While loop function in PHP. The Do-While loop function is another type of loop which runs at least once, since this loop checks the condition after executing the code within.

Do-While Loop Function PHP:

PHP Do-While loop method is another type of loop which runs at least once, since this loop checks the condition after executing the code within. We generally use Do-While loop  when the iteration must run at least once despite of the validity of the variable. In Do-While loop we need to initialize the variable first the coding within the loop executes and at last the this loop checks the condition. We should change the value of the variable within the loop.

PHP do while loop Example:

<?php

$i=34;

do{

echo "Value of \$i is $i <br/>";

$i++;

}while($i<11);

?>

Output:

Value of $i is 34

Exaplanation:

In the above example, value of $i is not valid but do-while loop runs at least one time despite the validity of the variable.

Related Tags for PHP 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.