Statement Php

$i = 1;
print '';
while ($i <= 10) {
    print "\n";
    $i++;
}
print '';
?>