2012-09-21 03:34:38 +00:00
|
|
|
<?php
|
2012-11-16 09:16:01 +00:00
|
|
|
if ($handle = opendir('Pictures')) {
|
2012-09-21 03:34:38 +00:00
|
|
|
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));
|
2012-11-16 09:16:01 +00:00
|
|
|
$thelist .= '<a href="http://img.unps-gama.info/?img='.$file.'">'.$file.'</a> Last Modified: <font align="right" color="green">'.'Not Availiable at the moment...'/*date("m/j/y h:i:s a", $last_modified) */.'</font><br />';
|
2012-09-21 03:34:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($handle);
|
|
|
|
}
|
2012-10-09 08:34:21 +00:00
|
|
|
?>
|