No longer needed with new system - no more flatfiles

This commit is contained in:
alopexc0de 2012-11-22 15:26:37 -05:00
parent ec0e951dfe
commit bdc41da0f4
2 changed files with 0 additions and 20 deletions

View File

@ -1,6 +0,0 @@
<?php
$random=rand(); //your random ID key
$path="."; //shortening url storage folder
$pagepath = "http://ugama.tk/short/";
$pagetitle = "Unps-gama.tk shortner";
?>

View File

@ -1,14 +0,0 @@
<?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);
}
?>