Create forms in Dreamweaver without CGI

 

EXAMPLE:

 

Cut and paste the following code into your new blank document.

 

<form action="mailto:youremail@test.com" enctype="text/plain" method="post" >
Your email address:<br>
<input type="text" name="emailAddress" size=64 maxlength=64 >

<br>
Your name:
<br>
<input type="text" name="theName" size=23 maxlength=64 >
<br>
Your comments
:<br>
<textarea name="theComments" rows=12 cols=55 >
</textarea>
<p>
<input type=submit value="Send">
</p>
<p>
<input type=reset value="Recycle!">
</p>
</form>

CHANGE EMAIL

If you have a look at the code in blue in step one you will see the first line points to an email address. What you want to do is change that to the email address to the address you want the form sent to when submitted. Now the form will automatically send whatever is submitted by this form to your email.

CUSTOMIZING

Add your own text or text box or anything else to the form. Always test the form out to make sure what you did shows up right.