<?php
$i = 1;

do {
echo “Count: $i <br>”;
$i++;
} while ($i <= 5);
?>