画像をナビゲート (次および前) できるスクリプトを作成したいと考えています。これが私がこれまでに持っているものですが、うまくいきません。
テーブル:images
行:imageID
行: image_name
=> これは、画像を表示するためのリンクを作成するためのものです。
$currentid = $row['imageID'];
$query = "SELECT imageID as prev
FROM images WHERE imageID < '$currentid'
ORDER by imageID DESC LIMIT 1;";
$result = mysql_query($query) or die("Unable to read table : $query");
$list = array();
while ($image = mysql_fetch_assoc($result)) {
$list[] = $image["imageID"];
}
$current_item = array_search($id1,$list);
$prev_link = $next_link = "";
if ($current_item > 0) {
// do previous link with $list[$current_item - 1]
}
if ($current_item < sizeof($list)-1) {
// do next link with $list[$current_item + 1]
}