While loop example in php

<?php
//While loop example in php(print 1 to 10)
$x=1;
while($x<=10)
{
echo $x;
$x++;
}
?>