Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Enumerate Products Re: Enumerate Products

#72524
Rob MacKay
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.