Ich habe ein Upload gebastelt:
Das Formular
dann führe ich in der redirect.php copy() aus
erhalte aber folgende Fehlermeldung:
heißt das, dass $datei ein array ist und ein array nicht hochgeladen werden kann?
Ich will doch keinen array, sondern die datei, die ich ausgewählt habe?
stehe auf dem schlauch...Danke!
Das Formular
HTML:
<form enctype="multipart/form-data" action="redirect.php?redirect=insertFoto&MAX_FILE_SIZE=5000" method="post">
<input type="text" name="fotoname" size="30" maxlength="50" value="Name"><br><br>
<input type="file" name="datei"><br><br>
<input type="submit" value=" »hochladen "><br>
</form>
dann führe ich in der redirect.php copy() aus
PHP:
copy($_FILES['datei'],"$dateiname");
erhalte aber folgende Fehlermeldung:
Warning: copy() [function.copy]: Unable to access Array in /mnt/am1/06/246/00000021/htdocs/web/insertFoto.php on line 74
Warning: copy(Array) [function.copy]: failed to open stream: No such file or directory in /mnt/am1/06/246/00000021/htdocs/web/insertFoto.php on line 74
heißt das, dass $datei ein array ist und ein array nicht hochgeladen werden kann?
Ich will doch keinen array, sondern die datei, die ich ausgewählt habe?
stehe auf dem schlauch...Danke!
Zuletzt bearbeitet: