0

这是我的代码

@$sql="select * from mp_images where id='5' and status='0'";
@$query=mysql_query($sql);
while(@$row=mysql_fetch_array($query))
{
    @$image=$row ['photo'];
?>
<img src="image/<?php echo $image; ?>" width="360" height="150">
<?php
}
?>

我想在将其添加到数据库后显示当前的最新图像

4

1 回答 1

1

只需按 id 订购

@$sql="select * from mp_images where status='0' order by id desc limit 1";
于 2013-07-15T08:08:06.183 回答