Also hey leute, ich erstell grad ein Formular für ne php Datei,
im Dreamweaver sieht alles ganz schick aus, aber sobald ich das Ding online anschaue wird das letzte Feld nicht angezeigt und der Rest des Codes landet als Value in der Textarea...
Hier mal zum Anschauen... Ich find da irgendwie keinen Fehler...
http://tt-media.eu/files/form.php
vlt weiß ja jemand was da los ist;)
ps: hier noch der Code
Code
<head>
<style type="text/css">
.copy {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 17px;
color: #000000;
text-decoration: none;
}
</style>
</head>
<body>
<form action="" method="post" enctype="multipart/form-data">
<fieldset>
<legend><span class="copy">[b]Partner hinzufügen[/b]</span></legend>
<table cellpadding="2" cellspacing="2">
<tr>
<td><span class="copy">Partnerlink:</span></td>
<td><input type="text" name="link"/></td></tr>
<td><span class="copy">Partnertext:</span></td>
<td><textarea name="kommentar" cols="38" rows="6"/></td></tr>
<tr>
<td><span class="copy">Partnerlogo:</span></td>
<td><input type="file" name="datei"/></td></tr>
<tr><td colspan="2"><input type="submit" value="Partner hinzufügen" /></td></tr>
</table>
</fieldset>
</form>
</body>
</html>
Alles anzeigen