<?php 
$n = 1; 

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