doujiao1984 2015-12-19 14:21
浏览 22
已采纳

空的html表,但行数正确

I have this PDO that fetch rows into html table:

      <?php
        $selectAll = "SELECT * FROM sales WHERE date_now = :date";
        $stmtAll=$conn->prepare($selectAll);
        $stmtAll->bindValue(':date', date("y-m-d"));
        $execAll=$stmtAll->execute();
        $result=$stmtAll->fetchAll();
      ?>
      <?php foreach($result as $rows){ ?>
    <tr>
      <td height="30" align="center"><?php $rows['type'] ?></td>
      <td align="center"><?php $rows['provider'] ?></td>
      <td align="center"><?php $rows['pay'] ?></td>
      <td align="center"><?php $rows['facture'] ?></td>
      <td align="center"><?php $rows['type'] ?></td>
      <td align="center"><form action='/architect/pages/delete_row.php' method="post">
          <input type="hidden" name="rowid" value="" />
          <input type="hidden" name="projid" value="" />
          <input class="imgClass_dell" type="submit" onclick="return confirm('هل أنت متأكد؟')" name="delete_workers" value="" />
        </form></td>
    </tr>
    <?php } ?>
  </table>

This query should select all rows with current date. I have gotten a table with the correct number of rows but with no data (empty table):

enter image description here

  • 写回答

2条回答 默认 最新

  • dongzang5815 2015-12-19 14:23
    关注

    You missed the echo before each values.

    You could either use:

    <td align="center"><?php echo $rows['provider']; ?></td>
    

    Or if you are using PHP 5.4 or later:

    <td align="center"><?= $rows['provider'] ?></td>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于无人驾驶的航向角
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退