Jump to content

Including Filenames in a list


Rineru

Recommended Posts

Okay I have alot of FILE in one directory, maybe 100.

 

What I need to do is have the index.php, grab the file name from each file and create a list of links in the index.php.

 

so if I have

 

file1.swf

file2.swf

file3.swf

index.php

 

in one directory.

 

Whenever someone accesses the directory : http://www.example.com/example

 

this will appear:

 

File1

File2

File3

 

as links.

 

Someone help me please.

Link to comment
https://forums.phpfreaks.com/topic/73680-including-filenames-in-a-list/
Share on other sites

from http://us2.php.net/readdir

 

<?php
if ($handle = opendir('/path/to/files')) {
    echo "Directory handle: $handle\n";
    echo "Files:\n";

    /* This is the correct way to loop over the directory. */
    while (false !== ($file = readdir($handle))) {
        echo "<A href='$file'>$file</A><BR>";
    }

    closedir($handle);
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.