可能重复:
在 PHP 中显示包含重复列的表
我想以特定的结构化方式显示一些 MySQL 数据。假设我在 MySQL 数据库中有这些数据
id sections items
1 Section A Item 1
1 Section A Item 2
1 Section A Item 3
1 Section A Item 4
1 Section B Item 5
1 Section B Item 6
1 Section C Item 7
1 Section C Item 8
1 Section A Item 9
1 Section D Item 10
1 Section D Item 11
如何让它在 PHP 中显示如下:
SECTION A
---------
Item 1
Item 2
Item 3
Item 4
Item 9
SECTION B
---------
Item 5
Item 6
SECTION C
---------
Item 7
Item 8
SECTION D
---------
Item 10
Item 11