-2
我有這個表在MySQL:PHP和MySQL排名
id | name | points
1 | John | 9
2 | Bart | 7
3 | Billy | 14
我想在HTML/PHP的表格,他打印此:
Name Points
Billy 14
John 9
Bart 7
我該怎麼辦?
我有這個表在MySQL:PHP和MySQL排名
id | name | points
1 | John | 9
2 | Bart | 7
3 | Billy | 14
我想在HTML/PHP的表格,他打印此:
Name Points
Billy 14
John 9
Bart 7
我該怎麼辦?
嘗試像查詢:
SELECT name, points FROM your_table ORDER BY points DESC
Stack Overflow是不是編碼服務,你必須ATLEAST嘗試一些東西,展示給我們。 – jmattheis