mirror of
https://github.com/c0de-archive/GAMA-Site.git
synced 2024-10-31 18:27:46 +00:00
Revamped upload dir listing - easier to work with
This commit is contained in:
parent
8e27a62bb5
commit
9dbd07551b
@ -6,37 +6,37 @@ index of UnPS-GAMA uploads
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="black" text="EEEEEE">
|
||||
<BODY background="https://si0.twimg.com/profile_background_images/468495900/bg.gif" text="EEEEEE">
|
||||
<center>
|
||||
<style type="text/css">
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:active {COLOR: #FFFFFF; TEXT-DECORATION: none}
|
||||
A:hover { COLOR: #FFFFFF; TEXT-DECORATION: underline}
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:visited {COLOR: #C0C0C0; TEXT-DECORATION: none}
|
||||
|
||||
.trone {
|
||||
background-color: #595959;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trtwo{
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trto{
|
||||
background-color: #000000;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
BODY { TEXT-DECORATION: none;
|
||||
font-family:verdana;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
</style>
|
||||
|
||||
<br><br>
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png">
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||
<table border=0>
|
||||
<tr class="trtwo">
|
||||
<tr class="trto">
|
||||
<td><center><b>file</b></center></td>
|
||||
<td><center><b>size</b></center></td>
|
||||
<td><center><b>last modified</b></center></td>
|
||||
@ -59,12 +59,17 @@ function size($file) {
|
||||
|
||||
$trbg = "1"; // which <TR> - background
|
||||
|
||||
echo "<div class='trone'>
|
||||
<td width=300><div align='center'><a href='../'>Up One Directory</a></a></div></td>
|
||||
<td width=100><div align='center'>DIR</div></td>
|
||||
<td width=300><div align='center'></div></td></div>";
|
||||
|
||||
// reading the content and...
|
||||
$mydir = dir("./");
|
||||
while ($file=$mydir->read()){
|
||||
$kind = filetype($file);
|
||||
// if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
// if ($kind != '.' && $kind != '..' && $kind != 'index.php'){
|
||||
if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess'){
|
||||
//... showing the content:
|
||||
//<tr> - backgroundcolor
|
||||
echo "<tr>";
|
||||
@ -76,16 +81,20 @@ while ($file=$mydir->read()){
|
||||
echo "<tr class = \"trtwo\">";
|
||||
$trbg = "1";
|
||||
}
|
||||
|
||||
//<td> and filename...
|
||||
echo "<td width=300><a href=\"$file\">".$file."</a></td>";
|
||||
echo "<td width=300><div align='center'><a href=\"$file\">".$file."</a></div></td>";
|
||||
//...filesize...
|
||||
echo "<td width=100>".size($file)." </td>";
|
||||
if(is_dir($file)){
|
||||
echo "<td width=100><div align='center'>DIR</div></td>";
|
||||
}else{
|
||||
echo "<td width=100><div align='center'>".size($file)."</div></td>";
|
||||
}
|
||||
//... last change...
|
||||
$change = filemtime($file);
|
||||
echo "<td width=200>".date("j. - M. - Y; H:i:s",$change)."</td>";
|
||||
echo "<td width=300><div align='center'>".date("H:i:s - j M, Y",$change)."</div></td>";
|
||||
}
|
||||
}
|
||||
}
|
||||
//}
|
||||
$mydir->close();
|
||||
?>
|
||||
</tr>
|
||||
|
@ -6,37 +6,37 @@ index of UnPS-GAMA uploads
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="black" text="EEEEEE">
|
||||
<BODY background="https://si0.twimg.com/profile_background_images/468495900/bg.gif" text="EEEEEE">
|
||||
<center>
|
||||
<style type="text/css">
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:active {COLOR: #FFFFFF; TEXT-DECORATION: none}
|
||||
A:hover { COLOR: #FFFFFF; TEXT-DECORATION: underline}
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:visited {COLOR: #C0C0C0; TEXT-DECORATION: none}
|
||||
|
||||
.trone {
|
||||
background-color: #595959;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trtwo{
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trto{
|
||||
background-color: #000000;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
BODY { TEXT-DECORATION: none;
|
||||
font-family:verdana;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
</style>
|
||||
|
||||
<br><br>
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png">
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||
<table border=0>
|
||||
<tr class="trtwo">
|
||||
<tr class="trto">
|
||||
<td><center><b>file</b></center></td>
|
||||
<td><center><b>size</b></center></td>
|
||||
<td><center><b>last modified</b></center></td>
|
||||
@ -59,12 +59,17 @@ function size($file) {
|
||||
|
||||
$trbg = "1"; // which <TR> - background
|
||||
|
||||
echo "<div class='trone'>
|
||||
<td width=300><div align='center'><a href='../'>Up One Directory</a></a></div></td>
|
||||
<td width=100><div align='center'>DIR</div></td>
|
||||
<td width=300><div align='center'></div></td></div>";
|
||||
|
||||
// reading the content and...
|
||||
$mydir = dir("./");
|
||||
while ($file=$mydir->read()){
|
||||
$kind = filetype($file);
|
||||
// if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($kind != '.' && $kind != '..' && $kind != 'index.php'){
|
||||
if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess'){
|
||||
//... showing the content:
|
||||
//<tr> - backgroundcolor
|
||||
echo "<tr>";
|
||||
@ -76,14 +81,18 @@ while ($file=$mydir->read()){
|
||||
echo "<tr class = \"trtwo\">";
|
||||
$trbg = "1";
|
||||
}
|
||||
|
||||
//<td> and filename...
|
||||
echo "<td width=300><a href=\"$file\">".$file."</a></td>";
|
||||
echo "<td width=300><div align='center'><a href=\"$file\">".$file."</a></div></td>";
|
||||
//...filesize...
|
||||
echo "<td width=100>".size($file)." </td>";
|
||||
if(is_dir($file)){
|
||||
echo "<td width=100><div align='center'>DIR</div></td>";
|
||||
}else{
|
||||
echo "<td width=100><div align='center'>".size($file)."</div></td>";
|
||||
}
|
||||
//... last change...
|
||||
$change = filemtime($file);
|
||||
echo "<td width=200>".date("j. - M. - Y; H:i:s",$change)."</td>";
|
||||
echo "<td width=300><div align='center'>".date("H:i:s - j M, Y",$change)."</div></td>";
|
||||
}
|
||||
}
|
||||
}
|
||||
$mydir->close();
|
||||
|
@ -6,37 +6,37 @@ index of UnPS-GAMA uploads
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="black" text="EEEEEE">
|
||||
<BODY background="https://si0.twimg.com/profile_background_images/468495900/bg.gif" text="EEEEEE">
|
||||
<center>
|
||||
<style type="text/css">
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:active {COLOR: #FFFFFF; TEXT-DECORATION: none}
|
||||
A:hover { COLOR: #FFFFFF; TEXT-DECORATION: underline}
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:visited {COLOR: #C0C0C0; TEXT-DECORATION: none}
|
||||
|
||||
.trone {
|
||||
background-color: #595959;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trtwo{
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trto{
|
||||
background-color: #000000;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
BODY { TEXT-DECORATION: none;
|
||||
font-family:verdana;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
</style>
|
||||
|
||||
<br><br>
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png">
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||
<table border=0>
|
||||
<tr class="trtwo">
|
||||
<tr class="trto">
|
||||
<td><center><b>file</b></center></td>
|
||||
<td><center><b>size</b></center></td>
|
||||
<td><center><b>last modified</b></center></td>
|
||||
@ -59,12 +59,17 @@ function size($file) {
|
||||
|
||||
$trbg = "1"; // which <TR> - background
|
||||
|
||||
echo "<div class='trone'>
|
||||
<td width=300><div align='center'><a href='../'>Up One Directory</a></a></div></td>
|
||||
<td width=100><div align='center'>DIR</div></td>
|
||||
<td width=300><div align='center'></div></td></div>";
|
||||
|
||||
// reading the content and...
|
||||
$mydir = dir("./");
|
||||
while ($file=$mydir->read()){
|
||||
$kind = filetype($file);
|
||||
// if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
// if ($kind != '.' && $kind != '..' && $kind != 'index.php'){
|
||||
if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess'){
|
||||
//... showing the content:
|
||||
//<tr> - backgroundcolor
|
||||
echo "<tr>";
|
||||
@ -76,16 +81,20 @@ while ($file=$mydir->read()){
|
||||
echo "<tr class = \"trtwo\">";
|
||||
$trbg = "1";
|
||||
}
|
||||
|
||||
//<td> and filename...
|
||||
echo "<td width=300><a href=\"$file\">".$file."</a></td>";
|
||||
echo "<td width=300><div align='center'><a href=\"$file\">".$file."</a></div></td>";
|
||||
//...filesize...
|
||||
echo "<td width=100>".size($file)." </td>";
|
||||
if(is_dir($file)){
|
||||
echo "<td width=100><div align='center'>DIR</div></td>";
|
||||
}else{
|
||||
echo "<td width=100><div align='center'>".size($file)."</div></td>";
|
||||
}
|
||||
//... last change...
|
||||
$change = filemtime($file);
|
||||
echo "<td width=200>".date("j. - M. - Y; H:i:s",$change)."</td>";
|
||||
echo "<td width=300><div align='center'>".date("H:i:s - j M, Y",$change)."</div></td>";
|
||||
}
|
||||
}
|
||||
}
|
||||
//}
|
||||
$mydir->close();
|
||||
?>
|
||||
</tr>
|
||||
|
@ -6,37 +6,37 @@ index of UnPS-GAMA uploads
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="black" text="EEEEEE">
|
||||
<BODY background="https://si0.twimg.com/profile_background_images/468495900/bg.gif" text="EEEEEE">
|
||||
<center>
|
||||
<style type="text/css">
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:active {COLOR: #FFFFFF; TEXT-DECORATION: none}
|
||||
A:hover { COLOR: #FFFFFF; TEXT-DECORATION: underline}
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:visited {COLOR: #C0C0C0; TEXT-DECORATION: none}
|
||||
|
||||
.trone {
|
||||
background-color: #595959;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trtwo{
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trto{
|
||||
background-color: #000000;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
BODY { TEXT-DECORATION: none;
|
||||
font-family:verdana;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
</style>
|
||||
|
||||
<br><br>
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png">
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||
<table border=0>
|
||||
<tr class="trtwo">
|
||||
<tr class="trto">
|
||||
<td><center><b>file</b></center></td>
|
||||
<td><center><b>size</b></center></td>
|
||||
<td><center><b>last modified</b></center></td>
|
||||
@ -59,12 +59,17 @@ function size($file) {
|
||||
|
||||
$trbg = "1"; // which <TR> - background
|
||||
|
||||
echo "<div class='trone'>
|
||||
<td width=300><div align='center'><a href='../'>Up One Directory</a></a></div></td>
|
||||
<td width=100><div align='center'>DIR</div></td>
|
||||
<td width=300><div align='center'></div></td></div>";
|
||||
|
||||
// reading the content and...
|
||||
$mydir = dir("./");
|
||||
while ($file=$mydir->read()){
|
||||
$kind = filetype($file);
|
||||
// if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
// if ($kind != '.' && $kind != '..' && $kind != 'index.php'){
|
||||
if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess'){
|
||||
//... showing the content:
|
||||
//<tr> - backgroundcolor
|
||||
echo "<tr>";
|
||||
@ -76,16 +81,20 @@ while ($file=$mydir->read()){
|
||||
echo "<tr class = \"trtwo\">";
|
||||
$trbg = "1";
|
||||
}
|
||||
|
||||
//<td> and filename...
|
||||
echo "<td width=300><a href=\"$file\">".$file."</a></td>";
|
||||
echo "<td width=300><div align='center'><a href=\"$file\">".$file."</a></div></td>";
|
||||
//...filesize...
|
||||
echo "<td width=100>".size($file)." </td>";
|
||||
if(is_dir($file)){
|
||||
echo "<td width=100><div align='center'>DIR</div></td>";
|
||||
}else{
|
||||
echo "<td width=100><div align='center'>".size($file)."</div></td>";
|
||||
}
|
||||
//... last change...
|
||||
$change = filemtime($file);
|
||||
echo "<td width=200>".date("j. - M. - Y; H:i:s",$change)."</td>";
|
||||
echo "<td width=300><div align='center'>".date("H:i:s - j M, Y",$change)."</div></td>";
|
||||
}
|
||||
}
|
||||
}
|
||||
//}
|
||||
$mydir->close();
|
||||
?>
|
||||
</tr>
|
||||
|
@ -6,37 +6,37 @@ index of UnPS-GAMA uploads
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY bgcolor="black" text="EEEEEE">
|
||||
<BODY background="https://si0.twimg.com/profile_background_images/468495900/bg.gif" text="EEEEEE">
|
||||
<center>
|
||||
<style type="text/css">
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:active {COLOR: #FFFFFF; TEXT-DECORATION: none}
|
||||
A:hover { COLOR: #FFFFFF; TEXT-DECORATION: underline}
|
||||
A:link {COLOR:#DDDDDD; TEXT-DECORATION: none}
|
||||
A:visited {COLOR: #C0C0C0; TEXT-DECORATION: none}
|
||||
|
||||
.trone {
|
||||
background-color: #595959;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trtwo{
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
.trto{
|
||||
background-color: #000000;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
BODY { TEXT-DECORATION: none;
|
||||
font-family:verdana;
|
||||
font-size: 9pt;
|
||||
text-indent: 20px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
</style>
|
||||
|
||||
<br><br>
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png">
|
||||
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||
<table border=0>
|
||||
<tr class="trtwo">
|
||||
<tr class="trto">
|
||||
<td><center><b>file</b></center></td>
|
||||
<td><center><b>size</b></center></td>
|
||||
<td><center><b>last modified</b></center></td>
|
||||
@ -59,12 +59,17 @@ function size($file) {
|
||||
|
||||
$trbg = "1"; // which <TR> - background
|
||||
|
||||
echo "<div class='trone'>
|
||||
<td width=300><div align='center'><a href='../'>Up One Directory</a></a></div></td>
|
||||
<td width=100><div align='center'>DIR</div></td>
|
||||
<td width=300><div align='center'></div></td></div>";
|
||||
|
||||
// reading the content and...
|
||||
$mydir = dir("./");
|
||||
while ($file=$mydir->read()){
|
||||
$kind = filetype($file);
|
||||
// if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($kind != '.' && $kind != '..' && $kind != 'index.php'){
|
||||
if ($kind != "php"){ // ATTENTION! if you want this file to show subdirectories, remove this query
|
||||
if ($file != '.' && $file != '..' && $file != 'index.php' && $file != '.htaccess'){
|
||||
//... showing the content:
|
||||
//<tr> - backgroundcolor
|
||||
echo "<tr>";
|
||||
@ -76,14 +81,18 @@ while ($file=$mydir->read()){
|
||||
echo "<tr class = \"trtwo\">";
|
||||
$trbg = "1";
|
||||
}
|
||||
|
||||
//<td> and filename...
|
||||
echo "<td width=300><a href=\"$file\">".$file."</a></td>";
|
||||
echo "<td width=300><div align='center'><a href=\"$file\">".$file."</a></div></td>";
|
||||
//...filesize...
|
||||
echo "<td width=100>".size($file)." </td>";
|
||||
if(is_dir($file)){
|
||||
echo "<td width=100><div align='center'>DIR</div></td>";
|
||||
}else{
|
||||
echo "<td width=100><div align='center'>".size($file)."</div></td>";
|
||||
}
|
||||
//... last change...
|
||||
$change = filemtime($file);
|
||||
echo "<td width=200>".date("j. - M. - Y; H:i:s",$change)."</td>";
|
||||
echo "<td width=300><div align='center'>".date("H:i:s - j M, Y",$change)."</div></td>";
|
||||
}
|
||||
}
|
||||
}
|
||||
$mydir->close();
|
||||
|
Loading…
Reference in New Issue
Block a user