how can i desplay the time of a file last modified,
using:
echo "<br>Please Allow a few minutes for this page to load";
$dl = "http://www.dragonbfp.com/images/sigs/"; //url where files are uploaded
$path = "path to where the files are"; //Absolute path to where files are uploaded
$list = "<table width=700 border=1 bordercolor=#000000 style=\"border-collapse: collapse\">";
$list .= "<tr><td width=700><center><b>Image List</b></center></td></tr>";
$dir = opendir($path);
while($file = readdir($dir)) {
if (($file != "..") and ($file != ".")) {
$filemod = filemtime($file);
$filemodtime = date("F j Y h:i:s A", $filemod);
$list .= "<tr><td width=700><center><img src='$dl$file' alt='$file'><br>$file | <a href=\"delete.php?d=$file\">Delete</a> | $filemodtime</center></td></tr>";
}
}
$list .= "</table>";
echo $list;
echo"
<br><br>
";