我正在尝试为我的数据库制作一个“下一个按钮”,这样我就可以一次查看一张图像。但是,我现在拥有它的方式仅更改了 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>