dongmoxin7111 2018-08-14 15:17
浏览 22
已采纳

如何使用php动态回显日期范围搜索结果中列数据的总和?

I have a search feature that displays records from a database based on date range search. What I want to do is echo the total sum of the "refund_amount" column that is displayed after the date range search. I know how to get the total sum from all the records from the database. I need to echo only the sum of the "refund_amount" column that is being displayed after the date range search. Any help is greatly appreciated.

Here is my code:

<?php
  include('includes/connect.php');
  if (isset($_GET["status"])) { $status  = $_GET["status"]; } else { $status=0; };
  if (isset($_GET["d1"])) { $d1  = $_GET["d1"]; } else { $d1=0; };
  if (isset($_GET["d2"])) { $d2  = $_GET["d2"]; } else { $d2=0; };
  $result = $connect->prepare("SELECT * FROM rma_list WHERE refund_date BETWEEN :a AND :b");
  $result->bindParam(':a', $d1);
  $result->bindParam(':b', $d2);
  $result->execute();
  for($i=0; $row = $result->fetch(); $i++){
  ?>

  <tr class="record">
  <td><?php echo $row['rma_id']; ?></td>
  <td><?php echo $row['order_date']; ?></td>
  <td><?php echo $row['rma_request_date']; ?></td>
  <td><?php echo $row['rma_number']; ?></td>
  <td><?php echo $row['order_number']; ?></td>
  <td><?php echo $row['so_number']; ?></td>
  <td><?php echo $row['vendor_name']; ?></td>
  <td><?php echo $row['vendor_ra']; ?></td>
  <td><?php echo $row['customer_name']; ?></td>
  <td><?php echo $row['credit_memo_number']; ?></td>
  <td><?php echo $row['refund_amount']; ?></td>
  <td><?php echo $row['refund_date']; ?></td>
  <td><?php echo $row['status']; ?></td>
  </tr>



  <?php
  }
  ?>
  • 写回答

1条回答 默认 最新

  • dpcyx08288 2018-08-14 15:31
    关注

    To do this in PHP code

    <?php
    include('includes/connect.php');
    if (isset($_GET["status"])) { $status  = $_GET["status"]; } else { $status=0; };
    if (isset($_GET["d1"])) { $d1  = $_GET["d1"]; } else { $d1=0; };
    if (isset($_GET["d2"])) { $d2  = $_GET["d2"]; } else { $d2=0; };
    $result = $connect->prepare("SELECT * FROM rma_list WHERE refund_date BETWEEN :a AND :b");
    $result->bindParam(':a', $d1);
    $result->bindParam(':b', $d2);
    $result->execute();
    
    // initialise a variable for the counter
    $tot = 0;
    
    while ($row = $result->fetch(PDO::FETCH_ASSOC)){
    ?>
          <tr class="record">
              <td><?php echo $row['rma_id']; ?></td>
              <td><?php echo $row['order_date']; ?></td>
              <td><?php echo $row['rma_request_date']; ?></td>
              <td><?php echo $row['rma_number']; ?></td>
              <td><?php echo $row['order_number']; ?></td>
              <td><?php echo $row['so_number']; ?></td>
              <td><?php echo $row['vendor_name']; ?></td>
              <td><?php echo $row['vendor_ra']; ?></td>
              <td><?php echo $row['customer_name']; ?></td>
              <td><?php echo $row['credit_memo_number']; ?></td>
              <td><?php echo $row['refund_amount']; ?></td>
              <td><?php echo $row['refund_date']; ?></td>
              <td><?php echo $row['status']; ?></td>
          </tr>
    <?php
    
        // accumulate the amount in the new var
        $tot += $row['refund_amount'];
    }
    ?>
        <tr class="totals">
            <td colspan="10"> TOTAL Refund</td>
            <td><?php echo $tot; ?></td>
            <td colspan="2">&nbsp;</td>
        </tr>
    

    The table layout may need a little work, but I hope you get the idea from this code

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)