douman6679 2015-01-01 18:22
浏览 61
已采纳

从数组中的数据库中获取多行

With code below I get id of category and name of products in that category. Category id is echoed and under it select is shown with products names for that category. Now it looks like this:

<label>37</label> <!--category id-->
<select>
<option>product one</option>
<option>product two</option>
</select>

But I need it to show category name an in option value product id. Like this:

<label>category name</label>
<select>
<option value="1">product one</option>
<option value="2">product two</option>
</select>

How can I achieve that in code below?

    $categories = array();
    $sql= "
SELECT a.id
     , a.name
     , a.active
     , b.id product_id
     , b.name product_name
     , b.flag_active
     , c.product_id
     , c.group_id 
  FROM products_groupnames a 
  JOIN products_group c 
    ON a.id = c.group_id 
  JOIN products_name b 
    ON b.id = c.product_id
 WHERE a.active=1 
   AND b.flag_active = 1
";
    $result = $mysqli->query($sql);
    echo "<h4>Select products by groups</h4>";
    while($row = $result->fetch_assoc()) {
        $categories[$row['id']][] = $row['product_name'];
    }

    foreach($categories as $key => $category){
        echo '<label>'.$key.'</label><br/>';
        echo '<select>';
        foreach($category as $item){
            echo "<option>".$item."</option>";
        }
        echo "</select><br/>";
    }
  • 写回答

1条回答 默认 最新

  • dry0106 2015-01-01 18:28
    关注

    Make your $categories array 2-dimensional:

    while ($row = $result->fetch_assoc()) {
        $cat = $row['id'];
        if (isset($categories[$cat])) {
            $categories[$cat]['products'][] = $row;
        } else {
            $categories[$cat] = array('name' => $row['name'], products => array($row));
        }
    }
    

    Then you can display it using nested loops:

    foreach ($categories as $category) {
        echo '<label>'.$category['name'].'</label>';
        echo '<select>';
        foreach ($category['products'] as $prod) {
            echo '<option value="'.$prod['product_id'].'">'.$prod['product_name'].'</option>';
        }
        echo '</select><br/>';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用