View Single Post
Old 08-12-2002, 06:15 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,487
sde is on a distinguished road
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
sde is offline   Reply With Quote