Forums

Dropdown selection not being emailed...

tsaw 24 Apr, 2008
Thanks for a great tool for us to use!

I am having a problem with a form that I added some dropdown lists for the user to select their answer from.

I did them in Dreamweaver and copied to the form code area. The form is filled out and processed correctly when submit is selected...

When I get the email - the text portion of the item is there, but the info which the user selected is missing.

I am sure that I am doing something wrong, but have read the forums and not found the answer.

Here's a sample of one of the lines of code... from the table it resides inside...

<td align="left" valign="top"><div align="right">I can swim </div></td>
       <td align="left" valign="top"><label>
         <select name="I can swim " size="1" id="I can swim ">
           <option value="Select One">Select One</option>
           <option value="Very Well">Very Well</option>
           <option value="OK">OK</option>
           <option value="Struggle">Struggle</option>
                  </select>
       </label></td>


Any thoughts or suggestions are greatly welcomed!

Thanks again!

Tim
GreyHead 24 Apr, 2008
Hi Tim,

Please remove the spaces from the name and id - the name will give ChronoForms indigestion and they are both invalid html.
<select name="I_can_swim " size="1" id="I_can_swim ">
Bob
tsaw 24 Apr, 2008
Hi Bob,

Excellent!

That did it...

Thanks for such a quick reply!

Blessings!

Tim
This topic is locked and no more replies can be posted.