Thread file upload (15 answers)
Opened by gast at 2010-03-15 12:00

Gast wer
 2010-03-16 11:17
#134923 #134923
Wenn du die Form-Tags verschachtelst musst du darauf achten was zu welchem Form gehört.

Minimalistische Testseite
Code: (dl )
1
2
3
4
5
6
7
8
9
10
<html>
<head><title>TEST UPLOAD</title></head>
<body>
<form action=test.pl method="post" entctype="multipart/form-data">
<textarea type="text" rows="10" cols="50" name="sinput"></textarea><br>
<input name="file" type="file"><br>
<input type="submit" value="SUB">
</form>
</body>
</html>


Bitte BITTE schreibe sauberen HTML-Code. Bei dem was du da stehen hast schmerzen mir die Augen und du machst dem Browser die Darstellung unnötig schwer.

View full thread file upload