So, Im trying to make a thumbnailed image gallery for my site... learning PHP strictly from tuturials...
Right now, what Im concerned with doing is figuring out how to tell the page to generate X amount of thumbnails per page, which I figured I would do using the ID part of my table.
something like
if ($id > ($maxrow*$maxcolumn)) {
echo "<a href=\"page\">";
}
What Im not sure how to do is find the highest ID number.
Any suggestions... or even suggestions on a better way to accomplish my task?
Thanks for the help...