这是我的代码:
现在我想调整同一个选框中的所有图像
$sql=mysql_query("select * from event_extra_img where event_id=9");
while($row=mysql_fetch_array($sql))
{
$image=$row ['event_img_path'];
echo '<div style="margin-right:350px;">';
echo '<marquee><img src="upload/extra/'.$image.'" width="100" height="100"></marquee>. ';
echo '</div>';
}
&GT;
答案 0 :(得分:2)
使用此
echo '<div style="margin-right:350px;">';
echo "<marquee>";
$sql=mysql_query("select * from event_extra_img where event_id=9");
while($row=mysql_fetch_array($sql))
{
$image=$row ['event_img_path'];
echo '<img src="upload/extra/'.$image.'" width="100" height="100">. ';
}
echo "</marquee>";
echo "</div>";