16 lines
304 B
PHP
16 lines
304 B
PHP
<?php
|
|
|
|
$directory = 'files';
|
|
|
|
if ($handle = opendir($directory.'/')){
|
|
echo 'Looking inside \'' . $directory . '\': <br>';
|
|
|
|
while($file = readdir($handle)){
|
|
if ($file != '.' && $file != '..') {
|
|
echo '<a href="'.$directory.'/'.$file.'">'.$file.'</a><br>';
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|