function
row(
$entphoto_id=0
)function
lst(
)return
$arr;}
/** * 獲取排在前面的行
*/function
rowprev
($entphoto_id=0
)/**
* 是否最前面的記錄
*/function
isfirst
($entphoto_id=0
)/**
* 獲取排在後面的行
*/function
rownext
($entphoto_id=0
)/**
* 是否最後面的記錄
*/function
islast
($entphoto_id=0
)/**
* 排序前移
* @return boolean true=成功;false=已經到最前面了
*/function
_up(
$entphoto_id=0
)return
(bool)
$res;}
/** * 排序後移
* @return boolean true=成功;false=已經到最後面了
*/function
_down
($entphoto_id=0
)return
(bool)
$res;}
function
_del
($entphoto_id=0
)
上一條記錄下一條記錄
select top 1 from 表 where id 當前id order by id desc select top 1 from 表 where id 當前id order by id desc 上一條記錄 select top 1 blogid from gcc bloginfo wher...
顯示上一條新聞 下一條新聞
假設當前newsid 2 select newstitle from newstable where newsid select top 1 newsid from newstable where newsid 2 order by newsid asc or newsid select top 1...
查詢資料的上一條和下一條
查詢當前資料的下一條 select from 表 where id 當前資料的id order by id asc limit1 查詢當前資料的上一條 select from 表 where id 當前資料的id order by id asc limit 1 查詢當前資料的下一條 select f...