How can I?
I need to paginate the images, how can I?PHP Code:<?php
$dir = "thumbs/";
echo "<br /><br /><center>";
//open dir
if ($opendir = opendir($dir))
{
//read dir
while (($file = readdir($opendir)) !== FALSE)
{
if ($file!="."&&$file!="..")
echo "<a href='image.php?id=$file'><div id=\"image\"><img src='thumbs/$file'\ ></div></a> ";
}
}
echo "</center>";
?>





Bookmarks