我想实现这个输出:
第一类
-field1
类别 2
-field2
使用连接或任何函数。
我有一个嵌套循环,第一个循环将循环一个针对类别的 sql 查询,而第二个循环将通过一个查询循环,当找到一个类别匹配时,它将相应地对它们进行分组。现在我能够正确地对它进行分组,但它仅限于一个循环,意味着大于 1 的循环,它最终得到最后一个类别并且只显示它,所以我想知道是否有办法让我这样做.
代码是这样的:
$unsize is the size of the array for the number of categories
$un is the category array
for($x=0;$x<$unsize;$x++)
{
foreach(loop in db)
{
if($p->category == $un[$x])
{
do some really long code.
summary:
$a = "<tr><td>$un[$x]</td></tr>";
$b = "<tr><td>$p->field</td></tr>";
}
}
}
尝试使用这个:
$a .= "<tr><td>Dog</td></tr><tr><td>Dogie</td></tr>";
$a .= "<tr><td>Dog1</td></tr><tr><td>Dogie1</td></tr>";
结束了
猫1
-field1
猫1
-field3
其中 field1 和 field3 属于 cat1
表有一个 id、字段、排序顺序、类别。