douwei8911 2011-06-09 01:11
浏览 68
已采纳

PHP / MySQL查询结果

Having an issue with a query..my wscategories stores the main categories of an online store, and my wssubcategories table stores the sub categories of the table with the foreign key called "parentcategory". I'm trying to list the main categories, with the subcategories underneath a la:

Tops

T-Shirts

Wovens

Sweaters

Pants

Shorts

Jeans

The query/result I wrote is the following:

$query = "SELECT DISTINCT a.categoryname AS maincategory, b.categoryname AS   
smallcategory FROM wscategories a, wssubcategories b WHERE a.SECTION = 'girls' AND  
b.parentcategory = a.id";
      $result = mysql_query($query) or die(mysql_error());
      while ($row = mysql_fetch_array($result))
      {

        echo $row['maincategory'];

        echo "<br/>";
        echo $row['smallcategory'];
        echo "<br/>";
      }

Which returns:

Tops

T-Shirts

Tops

Sweaters

Tops

Wovens

Etc. I want the script to just display the main category once, and then the subcategories underneath vs. displaying it multiple times. Any help?

  • 写回答

2条回答 默认 最新

  • dongtaogou6226 2011-06-09 01:19
    关注

    try something like this

    // note we need to order by maincategory for this to work
    //
    $query = "SELECT DISTINCT a.categoryname AS maincategory, b.categoryname AS   
    smallcategory FROM wscategories a, wssubcategories b WHERE a.SECTION = 'girls' AND  
    b.parentcategory = a.id
    ORDER BY maincategory ASC,
    smallcategory ASC
    ";
          $result = mysql_query($query) or die(mysql_error());
    
    
          // keep track of previous maincategory
          $previous_maincategory = NULL;
    
          while ($row = mysql_fetch_assoc($result))
          {
    
            // if maincategory has changed from previouscategory then display it
            if ($previous_maincategory != $row['maincategory']) {
                echo $row['maincategory'];
            }
    
            echo "<br/>";
            echo $row['smallcategory'];
            echo "<br/>";
    
            // record what the previous category was
            $previous_maincategory = $row['maincategory'];
          }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程