The following template shows you how to place a contact form on your website.
Download the this file -> formmail.zip <- , unzip and correct the values at the beginning of the file.
You can then load the file to your website.
Place a code, such as the following, on the page that should show your contact form:
<form name="form1" method="post" action="formmail.php">
<table>
<tr><td>Name:</td><td><input name="name" type="text" id="name" /></td></tr>
<tr><td>Vorname:</td><td><input name="vorname" type="text" id="vorname" /></td></tr>
<tr><td>Mitteilung:</td><td><textarea name="bemerkungen" cols="60" rows="8" id="bemerkungen2">hier Mitteilung eintragen!</textarea></td></tr>
<tr><td><input type="reset" name="reset" id="reset" value="Löschen" /></td><td><input type="submit" name="senden" id="senden" value="Senden" /></td></tr>
</table>
</form> |
You can add as many input fields as you like. The mail form combines the input together into a single e-mail.
|