Skip to content

Instantly share code, notes, and snippets.

@undone37
undone37 / upload.php
Last active November 7, 2018 12:26 — forked from taterbase/upload.php
Einfacher PHP Datei Upload
<!DOCTYPE html>
<html>
<head>
<title>Dateiupload</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Laden Sie eine Datei hoch</p>
<input type="file" name="file"><br />
<input type="submit" value="Upload">