20 lines
466 B
PHP
20 lines
466 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Uploadformular</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Wählen Sie eine Datei zum Upload aus</h1>
|
|
|
|
<form action="dateispeichern2.php" method="post" enctype="multipart/form-data">
|
|
<input name="datei" type="file"><br>
|
|
<input name="MAX_FILE_SIZE" type="hidden" value="30000">
|
|
<input type="submit" value="Starte Upload">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html> |