Ähhhm Hallo,
Ich habe einen HTML Formular und möchte dieses
gerne an meine E-mail sende.
Vieleicht könntet hr mir ja helfen?
Vielen Dank.
Der Code:
ZitatAlles anzeigen<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>Anmeldung</title>
<style type="text/css">
body {
background-color: #ffffff;
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
}
.tb {
background-color: #e9e9e9;
}.ttop {
background-color: #f9f9f9;
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
padding: 3px;
}.tc {
background-color: #ffffff;
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
padding: 3px;
}/* ############ CSS fuer Formular #################### */
input.mb {
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
background-color:#dbdde1;
border: 1px solid #000000;
}
textarea.mb {
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
background-color: #dbdde1;
border: 1px solid #000000;
}select.mb {
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
background-color:#dbdde1;
border: 1px solid #000000;
}.los {
font-size: 11px;
font-weight: bold;
color: #000000;
background: #c0cbd3;
border: 1px solid #000000;
}
form { display: inline; }</style>
</head>
<body>
<form action="http://thempark-route.de.vu" method="POST">
<div align="center">
<table cellspacing="1" cellpadding="0" border="0" class="tb" width="550">
<tr>
<td class="ttop" colspan="2">Anmeldeformular TPR-Treffen Toverland</td>
</tr>
<tr>
<td class="tc" colspan="2">Bitte alle Felder mit * ausfüllen</td>
</tr><tr>
<td class="tc" width="50%">Dein Name *</td>
<td class="tc" width="50%"><input class="mb" style="width: 200px;" type="text" name="Name" size="30" maxlength="20"></td>
</tr>
<tr>
<td class="tc" width="50%">Dein Nachname *</td>
<td class="tc" width="50%"><input class="mb" style="width: 200px;" type="text" name="Nachname" size="30" maxlength="20"></td>
</tr>
<tr>
<td class="tc" width="50%">Dein Nickname *</td>
<td class="tc" width="50%"><input class="mb" style="width: 200px;" type="text" name="Nickname" size="30" maxlength="40"></td>
</tr>
<tr>
<td class="tc" width="50%">Zahlungsart für Eintritskarten *</td>
<td class="tc" width="50%"><select class="mb" name="ZahlungsartfrEintritskarten" size="1"><option value="Ich Zahle Selber an der Kasse." >Ich Zahle Selber an der Kasse.</option>
<option value="Ich möchte eine Eintritritskarte bestellen." >Ich möchte eine Eintritritskarte bestellen.</option>
<option value="Ich habe eine Jahres Karte." >Ich habe eine Jahres Karte.</option>
</select></td>
</tr>
<tr>
<td class="tc" width="50%">Wie viele möchtes du mitbringen? *</td>
<td class="tc" width="50%"><select class="mb" name="WieVielemchtesdumitbringen" size="1"><option value="0" >0</option>
<option value="1" >1</option>
<option value="2" >2</option>
<option value="3" >3</option>
<option value="4" >4</option>
<option value="5" >5</option>
<option value="6" >6</option>
<option value="7" >7</option>
<option value="8" >8</option>
<option value="9" >9</option>
<option value="10" >10</option>
</select></td>
</tr>
<tr>
<td class="ttop" colspan="2" align="center"><input style="width: 100px;" class="los" type="submit" value="Absenden"></td></script>
<form name="anmeldung" action="mailto:tweek1303@hotmail.de"
onsubmit="return CodeTyp()">
</tr>
</table>
</div>
</form>
</body>
</html>
[/quote][/code]