データベースの「次へボタン」を作成しようとしているので、一度に1つの画像を表示できます。しかし、私が今それを持っている方法は、URLを変更するだけで、実際には画像はここでチェックしません。URLが何であっても、IDが最も高い画像(87)に固定されます。これを修正するにはどうすればよいですか?
これは私のデータベースがどのように見えるかです
<?php
require("includes/conn.php");
if (isset($_GET["imagecount"]))
$next = (int)$_GET["imagecount"]; //int is for sql injection
else
$next = 0;
$result = mysql_query("select * from people order by id desc limit $next, 1") or die(mysql_error());
?>
<?php
$result = mysql_query("select * from people order by id desc limit 0, 1 ") or die ("haznot DB: " . mysql_error());
while ($row = mysql_fetch_assoc($result))
{
echo "<img src=\"images/" . $row['filename'] . "\" alt=\"\" /><br />";
}
?>
<a href="images.php?imagecount=<?php echo $next+1; ?>">Next</a>