All pastes #2098772 Raw Edit

Someone

public php v1 · immutable
#2098772 ·published 2012-01-04 03:32 UTC
rendered paste body
<?php$webUrl = '';$myDirectory = opendir('.');while($entryName = readdir($myDirectory)) {        $dirArray[] = $entryName;}closedir($myDirectory);print('<table border=1><tr><th>File</th><th>Filesize</th></tr>');for($i = 0; $i < count($dirArray); $i++) {  if(preg_match('/^\.+$/', $dirArray[$i]))    continue;  printf('<tr><td><a href="%s/%s">%s</td><td>%d</td></tr>', $webUrl, $dirArray[$i], $dirArray[$i], filesize($dirArray[$i]));}print('</table>');?>