I'm sure i'm not the first to ask. I am new at this and am trying to create a guestbook for my website. Here is the code for the form(below). Go daddy pretty much said all I have to do is that....but it doesnt even generate an email etc. Actually, it just makes the form  What do I need to do to make this thing work?!?
<form id="form1" name="form1" method="post" action=""><br />
<form action="gdform.asp" method="post">
<input type="hidden" name="subject" value="Form Submission" />
<input type="hidden" name="redirect" value="thankyou.html" />
<input type="hidden" name="recipients" value=" ryandkara@hotmail.com" />
<p>First Name:
<input type="text" name="FirstName" />
Last Name:
<input type="text" name="LastName" />
</p>
<p>E-Mail:<input type="text" name="email" /></p>
<p align="center">Comments:<br />
<textarea name="comments" cols="40" rows="10">
</textarea></p>
<div align="center">
<input type="submit" name="submit" value="submit"/> <input type="hidden" name="redirect" value="thankyou.html" />
<input type="reset" name="Clear" id="Clear" value="Oops! Clear" />
</div>
</form>
|