AZ's Blog » Webdesign https://azapps.de Einmal mit Profis arbeiten… Sat, 28 Jun 2014 13:46:52 +0000 de-DE hourly 1 http://wordpress.org/?v=4.2.4 PHP – Probleme mit dem Datei-Upload in Google Chrome https://azapps.de/blog/2012/10/03/php-probleme-mit-dem-datei-upload-in-google-chrome/ https://azapps.de/blog/2012/10/03/php-probleme-mit-dem-datei-upload-in-google-chrome/#comments Wed, 03 Oct 2012 12:36:57 +0000 https://azapps.de/?p=135 Google Chrome tanzt beim Datei-Upload aus der Reihe. Mein Formular funktioniert in allen Browsern (sogar IE) außer dem Chrome.

Das Problem ist, dass Chrome numerische Werte im $_FILES-Array benötigt.

Die Lösung ist dementsprechend einfach. Statt

<form action="index.php" method="post" enctype="multipart/form-data">
<label for="file">Datei:</label><br />
<input type="file" name="file" id="file"/><br />
<input type="submit" value="Upload" />
</form>

Muss man das Formular zu

<form action="index.php" method="post" enctype="multipart/form-data">
<label for="file">Datei:</label><br />
<input type="file" name="file[]" id="file"/><br />
<input type="submit" value="Upload" />
</form>

abändern und im PHP-Code noch statt auf

$_FILES['file']['tmp_name']

auf

$_FILES['file']['tmp_name'][0]

zugreifen.

]]>
https://azapps.de/blog/2012/10/03/php-probleme-mit-dem-datei-upload-in-google-chrome/feed/ 1