I used the following to increment a "FOR" loop:
for($row2[0] = 15; $row2[0] <= $rownum3; $row2[0]++)
It worked.
I tried to use the following to decrement the "FOR" loop:
for($row2[0] <= $rownum3; $row2[0] = 15; $row2[0]--)
It did NOT work and went into an infinite loop for some reason.
Can someone please help?