13 lines
203 B
PHP
13 lines
203 B
PHP
<?php
|
|
|
|
|
|
echo <<<FOTO
|
|
<form method="POST" action="upload.php" enctype="multipart/form-data">
|
|
Datei: <input type="file" name="datei">
|
|
<input type="submit" value="Hochladen">
|
|
</form>
|
|
|
|
FOTO;
|
|
|
|
|
|
?>
|