do..while Loop in PHP

Advertisements

While Loop in PHP If Else Statement in PHP

do..while Loop in PHP

do..while loop is used where you need to execute code at least once. The do...while 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.

Syntax

do
{  
//code to be executed  
}
while(condition);  

Example of do....while Loop in PHP

<?php

$x = 0; 

do
{
    echo "$x <br>";
    $x++;
} while ($x <= 10);

?>

Output

0 1 2 3 4 5 6 7 8 9 10

While Loop in PHP If Else Statement in PHP

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements