hallo,
ich habe ein Problem.
Ich habe mir ein kleines Uploadscript gebastelt, es funktionier allerdings noch net ganz so wie ich will.
allerdings wird der tmpbildname nicht übergeben -.-
also vom server her habe ich alles gecheckt, da ist alles richtig eingestellt.
Kann mir jemand helfen?
ich habe ein Problem.
Ich habe mir ein kleines Uploadscript gebastelt, es funktionier allerdings noch net ganz so wie ich will.
PHP-Code:
<form enctype="multipart/form-data" action="index.php" method="post">
<input type="file" name="uploadedfile">
</form>
$bildname=$_FILES['uploadedfile']['name'];
$tmpbildname=$_FILES['uploadedfile']['tmp_name'];
copy($tmpbildname,"gfx/bilder/".$bildname);
also vom server her habe ich alles gecheckt, da ist alles richtig eingestellt.
Kann mir jemand helfen?
Kommentar