我对php不是很好,但我做了下面的代码,希望能得到一些帮助:
<?php
$next = '';
$result = mysql_query("SELECT ID FROM table WHERE x_column < '$x_column_variable' AND Column = '$column_variable' ORDER BY x_column DESC LIMIT 1");
while($row=mysql_fetch_array($result)) {
$next_id = $row['ID'];
if ($next_id != '') {
$next = '<a href="****.php?id='.$next_id.'"><img src="img/next.jpg"/></a>';
}
}
?>
该代码有效,但是当我有多个具有相同 x_column 值的 id 时,它只给我第一个并跳转到下一个 x_column 值。
例如:如果我有
12 78 2 2 1
我只得到
78 12 2 1