i need an html script?

Jordan W

New member
one that makes 3 tables to fill out, your email, your name and your message. i need the email and message to be mandatory, when u hit submit i need it to send the email to a support email.
has to be html php dont work
i got one
<div align="center">
<form method="POST" action="form_ac.asp" name="form1">
<table width="75%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>name:</td>
<td colspan="2">
<input type="text" name="name">
</td>
</tr>
<tr>
<td>email:</td>
<td colspan="2">
<input type="text" name="email">
</td>
</tr>
<tr>
<td>message:</td>
<td colspan="2">
<textarea name="message" cols="40" rows="5"></textarea>
</td>
</tr>
<tr>
<td>*</td>
<td colspan="2">
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</td>
</tr>
</table>
</form>
</div>
how do i add the email and edit the redirecting link? cant seem to find that part
 
Back
Top