0
$query = mysql_query("SELECT `code`, `file` FROM `files` WHERE id >= '$idimg' ORDER BY id ASC LIMIT 1, 8");
while ($result = mysql_fetch_assoc($query)) {
    if (strlen($result['title']) < 12) {
        echo '<div id="recomimage5"><div id="linkstyle"><strong><a href="http://localhost/edu/1111111111111/download.php?code='. $result['code'] . ' "><img src="files/thumbs/' . $result['code'] . '/' . $result['file'] . '" alt="' . $result['title'] . '"></a></strong></div></div>';
    }
    else {
        echo '<div id="recomimage5"><div id="linkstyle"><strong><a href="http://localhost/edu/1111111111111/download.php?code='. $result['code'] . ' "><img src="files/thumbs/' . $result['code'] . '/' . $result['file'] . '" alt="' . $result['title'] . '"></a></strong></div></div>';   
    }
}

我从 MySQL 数据库中订购了八张图像。

结果这个查询:

例如,我的 id 图片是“5”

Results now is: '6' '7' '8' '9' '10' '11' '12' '13' // id numbers images

但我想要这样的结果 - 例如我重新加载页面中的图像是“5”

Result must be: '1' '2' '3' '4' '5' '6' '7' '8'     // id numbers images
4

1 回答 1

1

请参考http://dev.mysql.com/doc/refman/5.0/en/select.html chnage WHERE id >= $idimg - 4 和限制 0,8 因为初始行是 0 而不是 1

于 2013-03-10T08:20:15.027 回答