Code Snippets Php

$i=1;
while($i<=5)
{
echo "$i
";
$i++;
}
?>