The trick would be to pull your array in the reversed order first...
Add an ORDER BY clause to your query that will order by a Unique ID Key field... Primary Key should do the trick if you are using an auto-incremented integer type field for that.
$r=mysql_query("SELECT * FROM studioMetryV2SingleBought WHERE 1 ORDER BY primary_key_field DESC");
Then just run your FOR loop like normal.