Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

The PHP do…while Loop

The PHP do…while Loop

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 is true);

<?php
$x = 1;

do {
  echo "The number is: $x <br>";
  $x++;
} while ($x <= 5);
?>
Scroll to Top