php repozitar
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
239 B

<?php
$dir = "uploads/";
$list1 = scandir($dir);
array_shift($list1);
array_shift($list1);
echo "<ul>";
foreach ($list1 as $item) {
echo "<li>";
echo "<a href=\"uploads/$item\"> $item </a>";
echo "</li>";
}
echo "</ul>";
?>