Hi guys,
I'm trying to get next and previous links for my album pages. The album pages are using my modified show_highest_rating function (which I posted here a while back)
Anyway here is the code I'm trying to get to work:
`if(isset($_SESSION['album_start'])) {
$offset=intval($_SESSION['album_start']);
print "nn";
}
else {
$offset=0;
print "nn";
}
$perpage=25; // images per page
show_highest_rated($offset,$perpage);
// Show images thumbnails from $st for $pp
function show_highest_rated($offset,$perpage) {
$images=load_highest_rated();
$size = '_'.zp_conf('thumb_size').'_cw'.zp_conf('thumb_crop_width').'_ch'.zp_conf('thumb_crop_height');
$max=count($images);`
`for($i=$offset;$i