11-23-2007, 08:49 PM
|
#10 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
Quote:
Originally Posted by wGEric
You could do a simple for loop as well.
PHP Code:
for($i = 555444; $i <= 555555; $i++)
{
echo $i . '<br />';
}
|
The one way, the only was, to make it easy to remember if you ask me. I am used to it since I make a lot of these loops, but you can also use while loops, instead of for and foreach. :)
|
|
|