Hi!
Ich zitiere mal ("PHP 4 - Grundlagen und Profiwissen", Jörg Krause) und hoffe das hilft:
Code:
<form enctype="multipart/form-data" action="script.php" method=post>
<input name="userfile" type="file">
<input type="submit">
</form>
Soviel zum Formular!
Nun zu Auswertung:
Code:
foreach($HTTP_POST_FILES as $strFieldName => $arrPostFiles) {
if ($arrPostFiles[size]>0 {
$strFileName = $arrPostFiles[name];
$strFileTemp = $arrPostFiles[tmp_name];
@copy ($strFileTemp, "upload/$strFileName");
}
}
Hoffe, habe beim Abtippen nix vergessen und die Antwort hilft noch (besser spät als nie)
Ciao fkerber