1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | | Quellcode
<form action="daten.php" method="POST">
<table border="0" cellpadding="0" cellspacing="0" alig="left">
<tr>
<td>Name:</td>
<td>
<input type="text" name="author">
</td>
</tr>
<tr height="10">
<td>
</td>
</tr>
<tr>
<td>Nachricht:</td>
<td>
<textarea name="nachricht" rows="6" cols="25"></textarea>
</td>
</tr>
<tr>
<td>
</td>
<td><input type="submit" value="Abschicken"> <input type="reset" value="Reset">
</td>
</tr>
</table>
|