Forum Moderators: coopster
Here is my code for the page:
<?php
$current_dir = '../uploads/';
$dir = opendir($current_dir);
echo '<p>Dirctory Listing:</p><ul>';
while ($file = readdir($dir)) {
echo "<a href='http://www.example.com/uploads/$file'>$file</a>"."<br /><br />";
}
echo '</ul>';
closedir($dir);
?>
[edited by: dreamcatcher at 6:31 am (utc) on Sep. 6, 2007]
[edit reason] Use example.com, thanks. [/edit]
[edited by: dreamcatcher at 6:31 am (utc) on Sep. 6, 2007]
[edit reason] Use example.com, thanks. [/edit]