i know that:
while($row = mysql_fetch_array($query)){}
will let me loop through the values i grabbed from my table. My question is, how i do i loop through it backwards?
Could you just sort your query in the opposite order?
I suppose i could, if i knew the function that could do that for mysql queries. That's the problem i'm having.
Just add a 'DESC' to your mysql query, after the order by clause.
Example:
"SELECT * FROM table ORDER BY variable DESC"
alright. Thanks for the help!