Heres my php code that puts the files in a list in the first place:
<?php
$dir="uploads"; // Directory where files are stored
if ($dir_list = opendir($dir))
{
while(($filename = readdir($dir_list)) !== false)
{
?>
<p><a href="/uploads/<?php echo $filename; ?>"><?php echo $filename;
?></a></p>
<?php
}
closedir($dir_list);
}
?>
And here's a link to my website: www.wetimg.com
Go to the "FILES" section to see what I'm talking about...
What will happen if people keep uploading is the page will just get longer. And longer. And still longer. I don't want it to do this. I want the list to continue on a page 2,3,4,etc. after 10 files are in each page.