- This topic has 3 replies, 2 voices, and was last updated 11 years, 8 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › printing multiple choices for couple registrations
By using the custom created field Field1 twice – it creates 2 drop down boxes on the reg form, but does not appear to be capturing 2 distinct pieces of data. Is one overwriting the other?
<table class=’eme-rsvp-form’>
<tr><th scope=’row’>Name*:</th><td>#_NAME</td></tr>
<tr><th scope=’row’>E-Mail*:</th><td>#_EMAIL</td></tr>
<tr><th scope=’row’>Phone number:</th><td>#_PHONE</td></tr>
<tr><th scope=’row’>Seats*:</th><td>#_SEATS</td></tr>
<tr><th scope=’row’>Entree Choice 1*:</th>
<td>#_FIELD1</td></tr>
<tr><th scope=’row’>Entree Choice 2*:</th>
<td>#_FIELD1</td></tr>
<tr><th scope=’row’>Comment:</th><td>#_COMMENT</td></tr>
#_CAPTCHAHTML[<tr><th scope=’row’>Please fill in the code displayed here:</th><td>#_CAPTCHA</td></tr>]
</table>
#_SUBMIT
Using the same field twice is not possible.
super – that’s all I needed to know. So even if it’s the same information you are gathering – only for a second, third etc dinner selection – each field number needs to be unique.
Got it!
The reason is simple: I use the field number as html name in the form, so using it twice will result in the same form name being given twice upon submit so one will be ignored.