You have this:
<form id="form1" name="form1" method="post" action="">
<br />
</form>
and then your input fields are below that.
First .. move the closing form tag below the submit button. Think of the
form tag as a container. If the fields are not in the container, they will
not be carried with the container.
Next, you have to have something as the action of your form. If you are
submitting the information to a database, you would have an Insert Record
behavior on your page to put the information in the database. If you are
sending the information via email, you would have email code on your next
page that would send email by whatever component you are using. This page
is html .. how are you sending mail, if that is what you are doing?
That same second page could display a thank you message which is just html
... but the real work is processing the information submitted in the form.
Make sense?
--
Nancy Gill
Adobe Community Expert
BLOG:
http://www.dmxwishes.com/blog.asp
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A Beginner's
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development
"father_of_chicks" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
i have addd the form
What should i do next Nancy
thanks:P |