Hi Leute!
Ich hab eine Script, womit ich Dateien in einen Ordner uploaden kann, jetzt wollte ich euch fragen was ich machen muss, damit ich mir den Inhalt auf einer anderen Seite aufgelistet angucken kann.
Hier das Script:
Und hier die config.php
Danke für eure unterstützung schon ma im voraus!
Ich hab eine Script, womit ich Dateien in einen Ordner uploaden kann, jetzt wollte ich euch fragen was ich machen muss, damit ich mir den Inhalt auf einer anderen Seite aufgelistet angucken kann.
Hier das Script:
PHP-Code:
<?
if(!isset($upload)) {
$upload = "";
}
switch($upload) {
default:
include "config.php";
echo"<body topmargin=\"0\" leftmargin=\"0\" bgcolor=\"#FF9900\" link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFFFFF\" text=\"#FFFFFF\" style=\"font-family: Verdana; font-size: 8pt; color: #FFFFFF\">
<form method=\"POST\" action=\"upload.php?upload=doupload\" enctype=\"multipart/form-data\">
<p align=\"center\">
<input type=file name=file size=30>
<button name=\"submit\" type=\"submit\">Upload</button>
</form>
</body>
</html>";
break;
case "doupload":
include "config.php";
$endresult = "<font size=\"2\">Datei hochgeladen!</font>";
if ($file_name == "") {
$endresult = "<font size=\"2\">Keine Datei ausgewählt!</font>";
}else{
if(file_exists("$absolute_path/$file_name")) {
$endresult = "<font size=\"2\">Datei existiert schon!</font>";
} else {
if (($size_limit == "yes") && ($limit_size < $file_size)) {
$endresult = "<font size=\"2\">Datei war zu groß!</font>";
} else {
$ext = strrchr($file_name,'.');
if (($limit_ext == "yes") && (!in_array($ext,$extensions))) {
$endresult = "<font size=\"2\">Falscher Dateityp!</font>";
}else{
@copy($file, "$absolute_path/$file_name") or $endresult = "<font size=\"2\">Konnte Datei nicht kopieren!</font>";
}
}
}
}
echo "
<html>
<head>
<title>Upload</title>
</head>
<body topmargin=\"10\" leftmargin=\"0\" bgcolor=\"#FF9900\" link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFFFFF\" text=\"#FFFFFF\" style=\"font-family: Verdana; font-size: 10pt; color: #FFFFFF\">
<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"400\" id=\"AutoNumber1\"><center>
$endresult
<a href=upload.php>zurück</a>
</center>
</body>
</html>";
break;
}
?>
PHP-Code:
<?
$absolute_path = "C:/Programme/xampp/htdocs/leibing/files/";
$size_limit = "no";
$limit_size = "20000000";
$limit_ext = "no";
$ext_count = "4";
$extensions = array(".gif", ".jpg", ".jpeg", ".png");
?>
Kommentar