My Problem: I want to count inverse in the for loop.
This is the opposite of what I want to do:
for($i=1;$i<=10;$i++){
I don't get it, just doing
for($i=10;$i>=1;$i--){ echo $i; }
is not enough?