Insert Checkboxes Into Form??

G

Guest

Hello all. Well I am almost done with my website. The only thing that is
left is to finish my order form page. I have multiple tables with choices
and one checkbox next to each row/choice. The user can have any number of
checkboxes checked. Once the user has checked their choices, they'll click
the SUBMIT button which will take them to a separate window with their
choices listed and a CONFIRM button. When they review their choices and are
happy that is what they want, they will click CONFIRM which will produce the
result of sending me an email with the checked choices in the body of the
email.

My problem is
1) How do I assign the checkboxes that are already there to a form that I
insert?
2) Once those checkboxes are assigned to the form, how do I have it send the
results of only the choices checked in the body of an email?
3) How can I make multiple checkboxes check/uncheck when one checkbox is
checked/unchecked?

I already spent alot of time designing the order page with all the tables
and such and don't want to have to create an order web page from scratch
using the Form Wizard. I have programmed before and can understand syntax
and usage of programming language. It would be perfectly fine if you can
write for me some html, java, etc. code that I can just copy/paste and simply
have to adjust the variable's name and value.

Thanks So Very Much,
CW
 
S

Stefan B Rusynko

On the second form you need server side scripting (ASP or PHP depending on what your host supports) to parse the 1st form (fields &
values) and pass the value to the conform form fields (as well as store the value to pass back to the 1st form if they want to make
changes

If your host supports ASP see http://www.w3schools.com/asp/default.asp



--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Hello all. Well I am almost done with my website. The only thing that is
| left is to finish my order form page. I have multiple tables with choices
| and one checkbox next to each row/choice. The user can have any number of
| checkboxes checked. Once the user has checked their choices, they'll click
| the SUBMIT button which will take them to a separate window with their
| choices listed and a CONFIRM button. When they review their choices and are
| happy that is what they want, they will click CONFIRM which will produce the
| result of sending me an email with the checked choices in the body of the
| email.
|
| My problem is
| 1) How do I assign the checkboxes that are already there to a form that I
| insert?
| 2) Once those checkboxes are assigned to the form, how do I have it send the
| results of only the choices checked in the body of an email?
| 3) How can I make multiple checkboxes check/uncheck when one checkbox is
| checked/unchecked?
|
| I already spent alot of time designing the order page with all the tables
| and such and don't want to have to create an order web page from scratch
| using the Form Wizard. I have programmed before and can understand syntax
| and usage of programming language. It would be perfectly fine if you can
| write for me some html, java, etc. code that I can just copy/paste and simply
| have to adjust the variable's name and value.
|
| Thanks So Very Much,
| CW
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top