2012-09-21 03:34:38 +00:00
|
|
|
<?php
|
|
|
|
if ($handle = opendir('.')) {
|
|
|
|
while (false !== ($file = readdir($handle)))
|
|
|
|
{
|
2012-10-09 08:34:21 +00:00
|
|
|
if ($file != "." && $file != ".." && $file != "index.php" && $file != "getfiles.php" && $file != "imgup.php" && $file != ".htaccess")
|
2012-09-21 03:34:38 +00:00
|
|
|
{
|
|
|
|
$last_modified = filemtime($file);
|
|
|
|
//print(date("m/j/y h:i:s a", $last_modified));
|
|
|
|
$thelist .= '<a href="http://unps-gama.tk/img/?img='.$file.'">'.$file.'</a> Last Modified: <font align="right" color="green">'. date("m/j/y h:i:s a", $last_modified) .'</font><br />';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($handle);
|
|
|
|
}
|
2012-10-09 08:34:21 +00:00
|
|
|
?>
|