iAZ
Mitglied
Hallo ich hab da ein Problem: Ich hab ein Script was Bilder hochladen soll. Es funktioniert zwar.
Aber manche Bilder läd es hoch andere wiederum nicht. wisst ihr wo der Fehler liegt?
index.php:
index2.php
$user_id und $pic_id werden früher festgelegt.
Danke für eure Hilfe im vorraus
Aber manche Bilder läd es hoch andere wiederum nicht. wisst ihr wo der Fehler liegt?
index.php:
PHP:
<form method="post" action="index2.php" enctype="multipart/form-data">
...
<TD>Bild:</TD>
<td><input type="file" name="bild"></td>
...
</form>
PHP:
<?php
...
$end_location="pics/original/".$user_id."/".$pic_id.".jpg";
move_uploaded_file($_FILES['bild']['tmp_name'], $end_location);
...
?>
Danke für eure Hilfe im vorraus