Initial commit

This commit is contained in:
net909
2023-09-28 16:21:06 +08:00
parent 498772eb04
commit ba7be004c0
640 changed files with 87745 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
body
{
font-size:small;
margin-top :0;
margin-left :0;
margin-right :0;
text-align :center;
line-height:100%;
color:black;
background-color :#ffffff;
vertical-align: middle;
max-width:480px;
margin: 0 auto;
}
.logo
{
padding:4px;
margin:3px;
border:1px dotted lime;
background-color:#000000;
text-align:center
}
.header, .footer
{
background:#888;
font-weight:bold;
margin:3px;
border:1px solid black;
padding:3px;
color:white;
-moz-border-radius:4px;
-webkit-border-radius:4px;
}
.shout
{
margin:3px;
background:#f3f3f3;
border:1px solid black;
-moz-border-radius:4px;
-webkit-border-radius:4px;
text-align:center;
padding:3px;
}
a:link, a:visited, a:active
{
color : #235a81;
text-decoration : none;
font-weight : bold;
}
a:hover
{
text-decoration: underline;
color: #235a81;
}
.header,.footer a
{
color: white;
}
+30
View File
@@ -0,0 +1,30 @@
<?php
/*
* wap phpmyadmin
* ionutvmi
* pimp-wap.net
*/
include '../config.php';
include '../head.php';
echo "<div class='shout'>".strtoupper($lang["Files"]." ".$lang["saved"])." <p align='left'><a href='../tables.php?k=$k'>".$lang["tables"]." </a><br/>- - -<br/>";
$ac=$_GET['ac'];
if (!$ac) {
if ($handle = opendir('.')) {
$q=0;
while (false !=($file=readdir($handle))) {
if ($file !='.' && $file !='..' && $file !='index.php' && $file !='default.css') {
echo "&#187; <a href='$file'>$file </a> - <a href='?k=$k&ac=d&f=$file'>(".$lang["delete"].")</a><br/>";
$q++; } }
if ($q==0) {
echo $lang["No_files"]." !"; }
closedir($handle);
} else {
echo $lang["Error"].": Folder can not be open !"; }
} else {
$f=$_GET['f'];
unlink($f);
echo "$f ".$lang["deleted"]." ! <br><br><a href='?k=$k'>".$lang["Back"]."</a>";
}
echo "</div>";
include('../foot.php');
?>