<form method="post" enctype="multipart/form-data">
<!-- MAX_FILE_SIZE muss dem Datei-Eingabefeld vorangestellt werden -->
<input type="hidden" name="MAX_FILE_SIZE" value="30000">
<div class="form_control">
<label for="myFile">Datei wählen:</label>
<!-- Das Name-Attribut des Datei-Eingabefeld definiert den Namen im $_FILES-Array -->
<input type="file" accept="image/*" name="myFile" id="myFile">
</div>
<div class="form_control">
<!-- Ein "normales" Text-Eingabefeld -->
<label for="normalo">Text eingeben (ein "normales" Element):</label>
<input name="normalo" type="text" id="normalo">
</div>
<div class="form_control">
<button type="submit" name="go" class="btn btn-blue">Upload</button>
</div>
</form>