PHP Code:
<?php
$dir = ".";
$file = readdir($dh);
$time = date_create($file,"Y-m-d");
if($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false){
echo "<table border=0><td><font size=5 face=\"arial\"><b>Username:</b> <a href=\"$file\">$file</a><br></font></td><td>$time</td>"."\n";}
closedir($dh);}
?></table>
ps. can you teach me to show and hide both specific files (ie. with specific filename), and general types,(eg. types of files with same file extension).
THANKS, spiderman.

