<base target="_blank">
<style>
    td {text-align: right;}
</style>
<table><tbody>
<?php
//  https://www.php.net/manual/ro/class.directoryiterator.php
$i=1;
foreach (new DirectoryIterator(__DIR__) as $fileInfo) {
    if($fileInfo->isDot()) continue;
    echo '<tr><td><b>'.$i.'</b></td><td>' . $fileInfo->getSize() . '</td><td><a href="'. $fileInfo->getFilename() .'">' . $fileInfo->getFilename() . '</a></td></tr>';
    $i=$i+1;
}
?>
</tbody></table>
    