<?php 
$n = 1; 

do {
    echo "The number is: $n \n";
    $n++;
} while ($n <= 10);
?>