我有一个如下的数据库表:
id | igroup | title | url | text
1 | gr1 | Title 1 | urltoimage1 | text1
2 | gr1 | Title 2 | urltoimage2 | text2
3 | gr2 | Title 3 | urltoimage3 | text3
4 | gr2 | Title 4 | urltoimage4 | text4
我的意思是,我想要一个多维数组(用于上述结构),如下所示;
$result[gr1] = [Title 1|urltoimage1][Title 2|urltoimage2]
$result[gr2] = [Title 3|urltoimage3][Title 4|urltoimage4]
最后,我将$result
通过 JSON 将此数组发送到页面。
因此,在我的页面中,我将为分类图片库安排这些值,例如:
Group 1(caption text)
--------
image1 image2 (clickable images)
Group 2(caption text)
--------
image3 image4 (clickable images)
编辑:我通过 igroup 更正了组字段。
问题已修改。