In short, I have a game of sorts, and the score board for it shows the score of the player at the end + how long they took to achieve it. I need to order my MySQL results so
You've to use this query:
select * from boobmatch_highscores order by time ASC, t_score DESC
Now time is displayed ascending order and score is displayed descending order.