Click to See Complete Forum and Search --> : Pulling my hair out over FormMail


clankid
08-06-2003, 11:26 AM
Okay my experts.
Can someone who is comfortable using FormMail take a look at my source code and let me know if they see the reason why my results email stop giving me answers after the "Lunch" selection on the following page?

www.disciplesnw.org/DWMonlineform.htm

I've got it sending just fine, but my selections do not show after that line.

I cannot seem to figure out why.

I know my code structure stinks. I use FP for my wysiwyg editing and I clean it up later-- so be gentle on that front.

I just need to make it work, then I'll make it look pretty.

Thanks for your excellent insights!

Amber

CyCo
08-06-2003, 12:27 PM
In your form you have checkboxes like this:

<input type="checkbox" name="Lunch" value="ON" tabindex="13">
<input type="checkbox" name="Lab1" value="off" tabindex="18">

^ this is incorrect ^

SHOULD BE SOMETHING LIKE THIS:

<input type="checkbox" name="Lunch" value="Lunch" checked tabindex="13">
<input type="checkbox" name="Lab1" value="Lab1" tabindex="18">

use checked if you want the form to show a default check in the box...not "off" or "ON"...

clankid
08-06-2003, 12:33 PM
Thanks CyCo!
I'll give it a shot.

I really appreciate your time.

Amber

CyCo
08-06-2003, 12:36 PM
...let me know if that cures the prob...

clankid
08-06-2003, 01:30 PM
CyCo:

I've got it working now. A little more fussing.
Basically, in addition to what you discovered, I was not following the logic of "groups"-- giving each one a different name was causing me issues too.

But now it's just great.

back to the grind of making it look purty.

Thanks again for your time to look at it.

Amber

CyCo
08-06-2003, 01:34 PM
...you're very welcome