E-mail formular
Hi !
Ich hoffe das passt hier rein:
Ich hab ein kleines Mail Formular erstellt. Das ging ja auch alles super. Ich hab gelesen dass man es über php Script ausführen soll. Aber wie ? (Es ist für eine Webseite )
Code:
<div id="mail"><strong>Contact Us</strong>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td><form id="form1" name="form1" method="post" action="">
<p>
<label for="Name" ;>Name</label>
<input type="text" name="Name" id="Name" style="background:#1b1b1b; color: #CCC"; />
</p>
<p>
<label for="Email">Email </label>
<input type="text" name="Email" id="Email" style="background:#1b1b1b; color: #CCC"; />
</p>
<p>Comments </p>
<p>
<textarea name="Comments" id="Comments" cols="45" rows="5"style="background:#1b1b1b; color: #CCC"; ></textarea>
</p>
<p>
<input type="submit" name="Submit" id="Submit" value="Submit" />
<input type="reset" name="Reset" id="Reset" value="Reset" />
</p>
</form></td>
</tr>
</table>
</div><!--mail-->
css:
Code:
#mail{
margin-top:10px;
margin-left:100px;
width:600px;
height:462px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #CCC;
border-top-color: #333;
border-right-color: #333;
border-bottom-color: #CCC;
border-left-color: #333;
}
MFG