余额没有显示

时间:2016-06-28 11:20:16

标签: php mysql

enter image description here

这是我的代码:

<table width="50%" border="2" bordercolor="green">
    <tr>
        <th>ItemName</th>
        <th>Balance</th>
    </tr>
      <?php
      if($qw="select DISTINCT(itemname) from details where DATE(date)<='$date' order by date desc"){
      $qq = mysqli_query($con,$qw);
      while($r=mysqli_fetch_array($qq,MYSQLI_ASSOC))
      {
        ?>
        <tr>
        <td><?php echo $r['itemname']; ?></td>
        <td><?php echo $r['balance']; ?></td>
        </tr>
        <?php
      }
      }
      ?>
      </table>

给定的代码是获取产品项目名称,但不从数据库中获取余额。

1 个答案:

答案 0 :(得分:0)

您的查询不包含“余额”字段 更改您的查询以包含它:

select DISTINCT itemname, balance from details where ...