dop83362 2018-02-04 19:46
浏览 54
已采纳

PHP循环 - 无法为每个组重复关闭标记[关闭]

I can't work out where I'm going wrong here I'm afraid.

I'm trying to loop through each unique group (each unique layout - let's say theres 'short', 'medium' and 'long' in this dataset) and for each item in that group to print it within the items section.

I've got to the following code, but the problem is the footers are only printing once at the end of all of the code - I need them to print after the items in each section.

<?php $seriesgroup = ''; if (mysqli_num_rows($result3) > 0) {while($row = mysqli_fetch_assoc($result3)) {
if($row['layout'] != $seriesgroup) {  ?>

    <!-- Print group headers -->

<?php $seriesgroup = $row['layout']; } ?>

        <!-- Print group items -->

<?php } ?>

    <!-- Print footers -->

<?php } ?>
  • 写回答

2条回答 默认 最新

  • doudie2693 2018-02-04 19:55
    关注

    There is a confusion in your mind about how HTML and PHP interact. The way to do this is to use the statement echo from inside the PHP part of your code.

    Edit: Try this new version. The code is cleaner:

    <?php 
      $previousrow = array ('layout' => ''); 
    
      if (mysqli_num_rows($result3) > 0) {
        while($row = mysqli_fetch_assoc($result3)) {
          if($row['layout'] != $previousrow['layout']) { // new group
            if ($previousrow['layout'] !=== '') { // not on first row
              print_footers ($previousrow);
            }
            print_headers ($row);
          } 
          print_group_items ($row);
          $previousrow = $row;
        }
        print_footers ($previousrow);
      } 
    
    function print_group_items ($this_row) {
      echo "  <!-- Print group items -->"
    ; // will depend on $this_row
    }
    
    function print_headers ($this_row) {
      echo "<!-- Print headers -->
    "; // will depend on $this_row
    }
    
    function print_footers ($this_row) {
      echo "<!-- Print footers -->
    "; // will depend on $this_row
    }
    ?>
    

    This was the previous version and wasn't correct, due to a.o. a tipo in the line containing print_footers; without ().

    <?php 
      $seriesgroup = ''; 
      $firstgroup = 1;
    
      if (mysqli_num_rows($result3) > 0) {
        while($row = mysqli_fetch_assoc($result3)) {
          if($row['layout'] != $seriesgroup) { 
            if (! $firstgroup) {
              print_footers ();
              $firstgroup = 0;
            }
            print_headers ();
            $seriesgroup = $row['layout']; 
          } 
          print_group_items ($row);
        }
        print_footers;
      } 
    
    function print_group_items ($this_row) {
      echo "  <!-- Print group items -->"
    ; // will depend on $this_row
    }
    
    function print_headers () {
      echo "<!-- Print headers -->
    ";
    }
    
    function print_footers () {
      echo "<!-- Print footers -->
    ";
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?