<!DOCTYPE html>
<html>
<body>
<?php
$i = 1;
while($i <= 5) {
echo $i;
echo "<br>";
$i++;
}
?>
</body>
</html>