0

我在从 mysql 数据库中检索子类别时遇到了一些问题。我想显示父类别的子类别。我只能获得主类别的最后一个子类别。第一个子类别不显示**。在我的表中**我有 category_id 和 category_parent_id.where category_parent_id 将是父类别的“0”。。提前致谢

 <ul class="betterList">
 <?php 
        $con = mysql_connect("localhost","root","pwd") or die('couldnot connect to database'.mysql_error());
               mysql_select_db("DB",$con);
               $result=mysql_query("select * from table ")or die("No table available with this name"."<br/><br/>".mysql_error());
             while($row=mysql_fetch_array($result))
               {
                $parent_id=$row['category_parent_id'];
                $category_id=$row['category_id'];
                if($parent_id==0)

                {
?>
                <li>
                <?php echo $row['category_id'].$row['name_en-GB'];

                $result1=mysql_query("select * from table where category_parent_id=".$category_id)or die("No data available with this name"."<br/><br/>".mysql_error());
                 echo  $num_row    = mysql_num_rows($result1);

                    if($num_row>0) {
                        for($i=0;$i<$num_row;$i++)
                        {
                             while($row1=mysql_fetch_array($result1))
                             {

                  ?>
                                     <ul style="margin:0px;padding:0;">
                                        <li><?php echo $row1['name_en-GB']?></li>
                                     </ul>
                                     <?php
                             }
                        }
                    }

                ?>


                </li>

                <?php } ?>



    <?php }?> 
 </ul>

当我删除<li>末尾的标签并将其保留在末尾时,我可以显示所有子类别,但 css 不适用。那里出了点问题,但我想不通

4

5 回答 5

1

删除下面并重试:

for($i=0;$i<$num_row;$i++)
{
于 2013-10-05T10:30:48.783 回答
0

哇 !o_O 您正在使用旧的 mysql_* 函数...

你写了 : for($i=0;$i<$num_row;$i++)

之后 : while($row1=mysql_fetch_array($result1))

这两条指令都在您使用此查询获得的每一行上循环。

删除所有这些:

echo  $num_row    = mysql_num_rows($result1);

if($num_row>0) {
    for($i=0;$i<$num_row;$i++) {

因为这是没用的。

循环结果的唯一重要的事情是 while($row1=mysql_fetch_array($result1))

您还可以将 mysql_fetch_array() 替换为更轻的 mysql_fetch_assoc()。

您的代码将是可优化的,但这应该可以解决您的问题。

于 2013-10-05T10:46:44.780 回答
0

不用嵌套循环,而是通过连接获取所有内容:

SELECT t1.category_id parent, t1.`name_en-GB` parent_name,
       t2.category_id child, t2.`name_en-GB` child_name
FROM table t1
JOIN table t2 ON t2.parent_category_id = t1.category_id
WHERE t1.parent_category_id = 0

那么你的循环将是:

$last_parent = null;
$first_cat = true;
while ($row = mysql_fetch_assoc($result)) {
    if ($row['parent'] != $last_parent) {
        $last_parent = $row['parent'];
        if (!$first_cat) { // Close out the last UL and LI
            echo '</ul></li>';
        } else {
            $first_cat = false;
        }
        echo '<li>' . $row['parent'] . $row['parent_name'];
        echo '<ul style="margin:0px;padding:0;">';
    }
    echo '<li>' . $row['child_name'] . </li>
}
if (!$first_cat) {
    echo '</ul></li>';
}

你的代码中有太多的嵌套循环:你有一个forwhile循环都试图循环内部查询的行。此外,您将每个孩子都放入了自己的<ul>中,这可能不是您想要的。

于 2013-10-05T10:52:12.467 回答
0

只需在 while 循环之前添加内部<ul>,我就可以获得子类别。

        <?php 
          echo "<ul>";
          while($row1=mysql_fetch_array($result1))
             {
         ?>
               <li><?php echo $row1['name_en-GB']?></li>
                <?php
             }
                echo " </ul>";
于 2013-10-07T04:11:12.950 回答
0

试试这个解决方案是否适合你,如果它有效,相应地调整你的代码

        $result = mysql_query("select * from table WHERE category_parent_id = 0 ");

        while($row=mysql_fetch_array($result)) {

            $parent_id = $row['category_parent_id'];
            $query = mysql_query("select * from table where category_parent_id = {$parent_id}");

            while($sub_cats=mysql_fetch_array($query)) {
                echo '<pre>'.print_r($sub_cats).'</pre>';
            }

        } 
于 2013-10-05T11:01:27.730 回答