hi blue mage =) welcome to codenewbie.com !
here is an example of how i would print 5 lines with php using a while loop:
PHP Code:
<?
$i=0;
while($i < 5)
{
// print <br> in each line
echo "<br>";
// increment $i
$i++;
}
?>
feel free to post anymore questions =)
have fun