here is a simbple form that uses php to do what you want...
Code:
<form name="form1" method="post" action="YourForm.php">
<table width="100%" border="0" cellpadding="3">
<tr>
<td width="6%">Name</td>
<td width="94%"><input name="Name" type="text" id="Name"></td>
</tr>
<tr>
<td>Email</td>
<td><input name="Email" type="text" id="Email"></td>
</tr>
<tr>
<td>Message</td>
<td><textarea name="Message" cols="35" rows="4" id="Message"></textarea></td>
</tr>
</table>
<br>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</form>
copy this into notepad and "save as" "form.html" and open it up... of course it wont work but look at the form and study the source code... mess around with it and change things around, you will understand it all in no time flat... now you need a web host that supports php, if you want a free one use bravenet, if you want paid well, you gotta pay lol
|