我在从 mysql 检索数据以显示在 marquee 中时遇到问题,当我转到我的网页时,它仅显示 marquee 中数据库中的一个数据。我的问题是如何检索所有存储的数据。谢谢下面是代码部分:
$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'];
$uploaddate=$rowdata['uploaddate'];
}