php mysql数据库命令

时间:2013-03-10 07:28:00

标签: php mysql database

$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数据库订购了8张图片。

结果此查询:

我的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

1 个答案:

答案 0 :(得分:1)

请参阅http://dev.mysql.com/doc/refman/5.0/en/select.html 更改WHERE id&gt; = $ using - 4并限制0,8,因为初始行为0而不是1