mirror of
https://github.com/c0de-archive/GAMA-Site.git
synced 2024-11-01 02:27:46 +00:00
15 lines
577 B
PHP
15 lines
577 B
PHP
<?php
|
|
if ($handle = opendir('.')) {
|
|
while (false !== ($file = readdir($handle)))
|
|
{
|
|
if ($file != "." && $file != ".." && $file != "index.php" && $file != "getfiles.php" && $file != "config.php" && $file != "url" && $file != "log")
|
|
{
|
|
$last_modified = filemtime($file);
|
|
//print(date("m/j/y h:i:s a", $last_modified));
|
|
$thelist .= '<a href="http://ugama.tk/short/'.$file.'">'.$file.'</a> Created on: <font align="right" color="green">'. date("h:i a - m/j/y", $last_modified) .'</font><br />';
|
|
}
|
|
}
|
|
closedir($handle);
|
|
}
|
|
?>
|