Added the files of the project to the repo

This commit is contained in:
alopexc0de
2012-09-20 23:34:38 -04:00
parent a827816c25
commit 3891df50bf
22 changed files with 1710 additions and 0 deletions

14
img/getfiles.php Executable file
View File

@@ -0,0 +1,14 @@
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != ".." && $file != "index.php" && $file != "getfiles.php" && $file != "imgup.php")
{
$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);
}
?>