Hey everyone,
Say I have a folder full of files, zips or whatnot. Is there a script out there that will go through that folder, and create a page of links to download those files.

Anything customizable or not. I just have a large collection of files that I would like to make available for download, but don't want to have to create a bunch of links on my own.
Thanks.

You got it!

$folder = 'folder_name';  // enter name of folder you want to create links
$dp = opendir($folder);
while($file = readdir($dp)) {
  echo "<a href=\"http://www.yoursite.com/$folder/$file\">$file</a><br>\n";
}
closedir($dp);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.