datei upload -> datei kaputt

Ich hatte genau das selbe Problem, dann hab ich es mit move_uploaded_file() probiert und es hat ohne Probleme funktioniert.

in deinem Fall wäre das dann

move_uploaded_file($file,"$updir/$ziel");
 
Zurück