Kód: Vybrať všetko
$handle=opendir('files'); //otvorim si priecinok so subormi
while (false!==($file = readdir($handle)))
{
$path_nfo=pathinfo($file);
if (is_dir('$file') && $file != "." && $file != "..") {
echo "$file je priecinok";
}
ELSEif ($file != "." && $file != "..")
{
echo "<tr>";
echo "<td>$file</td>";
echo "<td align=\"center\"><a href=\"files/$file\">>> DownLoad <<</a></td>";
echo "<td align=\"center\">". round((filesize("files/".$file)/1024/1024), 2)." MB</td>";
echo "</tr>";
}
}
echo "</table>";
closedir($handle);