Hello, I am making a "standings" page for a league. I made everything so that it calculates how many points the team has, and now I want it to arrange each row in descending order according to how many points a team has. To see an example of what just goto download.com and search anything and click for it to list it by downloads or something. Thats what I want my thing to do.

Thanks,
Darko

    thanks for outlining your idea - but what's your question? can you provide us with your database layout?

      Probably you'll want to query the DB with a descending order by clause:

      SELECT ...blah blah blah... ORDER BY `points` DESC
      
        Write a Reply...