I have a form where I am using a DROP DOWN with the classical value=label system because the third party system I send the information to doesn't care about the label, just the value as an account ID. On the otherhand, my website visitors only know them by the label and not the ID. On my "thank you" message and the "confirmation email" that I send them I want to reference the name of their selection but can't figure out how to save it to the database and also to reuse it in the HTML message and email.
the dropdown is built like this:
Field Name: provider
Field title: School Name
Multiple: (not checked)
Size: 1
Selected: (empty)
Show Empty: Please Select
Options:
123456=Jake University of Theology
234567=Anthony College
456454=Bart Simpson Homeschooling
564645=Homer's Beer Drinking Class
Field ID: provider
Field Class: (empty)
What I want to do is reference on the thank you page something like this:
However I can only get it to save the 6 digit number to the database and can't figure out how to reuse the same label. If I ask them to use the ID's, they won't know them and if the thank you message only uses the ID numbers, it will confuse them.
the dropdown is built like this:
Field Name: provider
Field title: School Name
Multiple: (not checked)
Size: 1
Selected: (empty)
Show Empty: Please Select
Options:
123456=Jake University of Theology
234567=Anthony College
456454=Bart Simpson Homeschooling
564645=Homer's Beer Drinking Class
Field ID: provider
Field Class: (empty)
What I want to do is reference on the thank you page something like this:
Thank you {name} for choosing to enroll at {providername}!
However I can only get it to save the 6 digit number to the database and can't figure out how to reuse the same label. If I ask them to use the ID's, they won't know them and if the thank you message only uses the ID numbers, it will confuse them.