<!DOCTYPE html>
<html>
<body>
<?php
$x = 1;
do {
echo "Число: $x <br>";
$x++;
} while ($x <= 5);
?>
</body>
</html>