我想知道如何在表格之间的 marquee 中回显多个新闻,我只能回显一个新闻,我想使用 marquee 在表格内的主页中查看超过 4 条新闻,新闻已经发布在数据库中。我正在使用这段代码:
<?php
include("connect.php");
$select="SELECT newsid, headlines from news WHERE uploaddate order by uploaddate desc limit 4";
$rsd=mysql_query($select);
while($row = mysql_fetch_array($rsd))
{
$newsid=$row['newsid'];
$tittle=$row['headlines'];
}
?>
在设计中我使用这个代码
<table >
<tr>
<td width="87%">
<marquee style="color: #FF0000; font-family: Verdana; font-variant: small-caps; font-size: 10pt; font-weight: bold" scrollAmount="2" scrollDelay="20" width="840" bgColor="#CCCCFF" height="24">
<?php echo $tittle; ?></marquee></td>
</tr>
</table>