Home › Forums › CSS › Enumerate Products › Re: Enumerate Products
November 23, 2010 at 6:42 am
#72524
Participant
Something like:
$count = 1;
while($count <= 10) { // while $count is less than or equal to 10.
echo "$count";
$count++; // adds 1 to the count.
}
Hopefully this should give you an idea.