我无法以正确的方式放置最后一个 div。
我从数据库中查询的输出:
SELECT a.id, a.name, b.sub_id, b.sub_name FROM cat a, sub_cat b WHERE a.id = b.cat_id
将会:
| id | name | sub_id | sub_name |
| 1 | moblie | 1 | Phone |
| 1 | mobile | 2 | Mobile Phones Accessories |
| 2 | Lifestyle | 3 | Arts |
| 2 | Lifestyle | 4 | Books |
我想做这个结构:
<div id="moblie" class="tab-pane active">
<a href="?cat=1&sub_cat=1">Phones</a>
<a href="?cat=1&sub_cat=2">Mobile Phones Accessories</a>
</div>
<div id="Lifestyle " class="tab-pane">
<a href="?cat=2&sub_cat=3">Arts</a>
<a href="?cat=2&sub_cat=4">Books</a>
</div>
我的原始 PHP 代码:
<?php $query = "SELECT a.id, a.name, b.sub_id, b.sub_name FROM cat a, sub_cat b WHERE a.id = b.cat_id";
$result = mysql_query($query);
$i=0;
$a=1;
$b=0;
while($row = mysql_fetch_assoc($result)){
$i++;
if($i == 1){$set = "active";}else{$set = NULL;}
$hre=strtolower(preg_replace("/[^a-zA-Z]+/", "", $row['name']));
while($a == $row['id']){ $a++;?>
<div id="<?=$hre?>" class="tab-pane <?=$set?>">
<?php }?>
<a href="?cat=<?=$row['id']?>&sub_cat=<?=$row['sub_id']?>"><?=$row['sub_name']?></a>
<?php while($b == $row['id']){ $b++;?></div>
<?php }
}?>
我收到的输出:
<div id="mobilephones" class="tab-pane active">
<a href="?cat=1&sub_cat=1">Mobile Phones</a>
<a href="?cat=1&sub_cat=2">Mobile Phones Accessories</a>
<div id="homelifestyle" class="tab-pane ">
<a href="?cat=2&sub_cat=3">Art - Collectibles - Hobbies</a>
<a href="?cat=2&sub_cat=4">Books - Magazines</a>
</div></div>
我的想法:因为它是最后一个 while 循环,它如何理解打印 div 的即将到来的值。
我尝试了不同的方式没有找到解决方案。请帮帮我。
注意:我知道如何使用循环 quires。但是,我想通过单个 mysql 查询来完成。