当 Text = NULL 时我该怎么办?
<marquee behavior="alternate" scrolldelay="1" scrollamount="2">
<?php do { ?>
<?php echo $row_Recordset1['Name']; ?>:
<?php echo $row_Recordset1['Text']; ?>
•
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</marquee>
<?php mysql_free_result($Recordset1); ?>
<marquee behavior="alternate" scrolldelay="1" scrollamount="2">
<?php do { ?>
<?php echo $row_Recordset1['Name']; ?>:
<?php echo $row_Recordset1['Text']; ?>
•
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</marquee>
<?php mysql_free_result($Recordset1); ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
向用户打印友好消息而不是
NULL
:如 xil3 所示,您也可以使用此模式(来自文档):
Print a friendly message to the user instead of
NULL
:As xil3 illustrates, you can also use this pattern (from the docs):
按照您现在编写的方式,$row_Recordset1 在第一次进入循环时将为 null。
我已经为你重写了:
The way you have it written right now, $row_Recordset1 will be null the first time it goes into the loop.
I've rewritten it for you: