- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在浏览各种网站,了解如何跳过由 mysql fetch assoc
和 php do while
生成的额外行,但找不到此解决方案。我正在从数据库生成 html 表。从下面的代码中,我得到了一个额外的空行。我的数据库表上有三个数据。这段代码生成了五行,而我预计是四行。
我的完整代码如下:
<?php
$sql = "SELECT * from $table where Year='2013'";
$result = mysql_query($sql);
if(!$result) {
die(mysql_error()); // TODO: better error handling
}
?>
<table><tr>
<th>Name</Name>
<th>Date</th>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row['Name'];?></td>
<td><?php $ndt = strtotime($row['date']); echo date('d-M-Y', $ndt); ?></td>
<?php } while ($row= mysql_fetch_assoc($result)); ?>
</tr>
</table>
最佳答案
切换到 while 循环。
<?php while ($row= mysql_fetch_assoc($result)) { ?>
<tr>
<td><?php echo $row['Name'];?></td>
<td><?php $ndt = strtotime($row['date']); echo date('d-M-Y', $ndt); ?></td>
<?php } ?>
第一次通过你的 do/while 循环 $row 没有填充,因此你得到一个空行。
关于php - 如何在 php do while 和 mysql fetch assoc 中跳过这个额外的和不必要的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17802275/
jQuery attributeContainsPrefix [name^="value"] 对比 attributeStartsWith [name|="value"] 实际区别是什么? 最佳答案
在1.1部分在RFC 6749中,有四种角色:资源拥有者、资源服务器、客户端和授权服务器。 如果客户端和资源所有者是同一实体,OAuth 是否变得多余或不必要? 例如,我有一个封闭的 API 和一个面
我有一段代码,其中有一个带有保护子句的 raise 语句: def validate_index index # Change to SizeError raise ArgumentError
我看到了这篇文章( JPA Entity Lifecycle Events vs database trigger ),但它并没有像我在这里那样明确地询问: 当我插入 PK 值为 (null) 的行时
所以,我有一段代码看起来像 if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2){ // Do something }
我是一名优秀的程序员,十分优秀!