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 に答える