• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

dateiupload - mehrfachauswahl

ützelbrütz

New member
hallo,

wie kann man es für ein <input type=file>-dateiauswahlfeld ermöglichen, daß nicht nur eine datei ausgewählt werden kann, sondern gleich mehrere?? hab das schon mal bei einem upload-feld gesehen, weiß aber nicht mehr wo.

gruß und dank
üb
 
Code:
<form enctype="multipart/form-data" action="upload.php" method="post" name="Upload" 
    	style="text-align:center">
      <input type="hidden" name="MAX_FILE_SIZE" value="4194304">
      <input name="files[]" type="file" size="70" style="margin-top:2px;">
      <br>
      <input name="files[]" type="file" size="70" style="margin-top:2px;">
      <br>
      <input name="files[]" type="file" size="70" style="margin-top:2px;">
      <br>
      <input name="files[]" type="file" size="70" style="margin-top:2px;">
      <br>
      <input name="files[]" type="file" size="70" style="margin-top:2px;">
      <br>
      <input type="submit" value="Datei(en) hochladen" style="margin-top:2px;">
    </form>
 
Zurück
Oben