I'm having a little problem with Self Registration/FrontEndUser and using Dropdowns.
I Add a Property (in FEU) and select dropdown from the list. Then it says to enter 'Dropdown options, separated by line breaks', which I do this like;
Option1
Option2
Option3
If I look at those values in MySQL it shows up as;
option_name option_text
Option1 Option1
Option2 Option2
Option3 Option3
But when I have those as dropdowns on my page I get the following code generated;
Code: Select all
<select name="m4input_choices"><option value="Option1 Option2 Option3">Option1 Option2 Option3</option></select>
I thought it might be not putting in proper line breaks so I tested in MySQL with putting in char(13) + char(10) but I still get the same result.
Any idea where I'm going wrong?
Thanks, Steve