Hallo Leute,
habe folgendes Problem. Für ein Programm brauche ich eine Uploadfunktion. Deswegen habe mein Upload Script eines anderen Programmes verwendet. Doch es passiert einfach nichts.
Hier ist der Code des Formulares:
Code
...
<form action="erstellenachricht.php" method="post" name="form">
<table cellpadding="0" cellspacing="0">
<tr>
<td>Name:</td>
<td><input style="width:330px;" class="center_tabelle_form_input" type="text" value="" name="name" /></td>
</tr>
<tr>
<td>Foto:</td>
<td><input type="file" name="foto" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Speichern" /></td>
</tr>
</table>
</form>
...
Alles anzeigen
Hier der Code der PHP Datei die für den Upload zuständig ist:
Code
...
$status = move_uploaded_file($_FILES['foto']['tmp_name'], $_FILES['foto']['name']);
echo $status;
...
Ein Problem ist auch, dass $status in diesem Fall weder TRUE noch FALSE zugewiesen bekommt. Und eine Fehlermeldung gibt es auch keine. Ich bin ratlos. Kann mir pls jemand helfen?
Danke,
imakroy