我正在设置一个 php 和 mysql 我在我的数据库中有这个表
id type details
1 1 sample details
2 1
3 1
4 2
5 2
6 2
7 3
8 3
9 3
10 1
11 1
12 1
13 5
已经试过这个
sql = 'SELECT id, GROUP_CONCAT(type) as concat FROM ob GROUP BY type';
$result = mysqli_query($db, $sql);
while($row = mysqli_fetch_assoc($result)) {
$final[] = explode(',', $row["concat"]);
}
print_r($final);
请帮助我如何显示此示例输出(在 html 中)
type id
1 1 2 3 11 12
2 4 5 6
3 6 7 8
5 13
我已经尝试了一些 foreach 循环,但似乎无法得到这个结果。
繁华开满天机
慕村225694
HUWWW