What I'm trying to accomplish:
Setup a multiple selection field where the Value is an integer....but what the end user sees is text as the options to select.
example:
<select size="4" name="interests" multiple="multiple">
<option value="*" >Anything</option>
<option value="00" >Baseball</option>
<option value="01" >Basketball</option>
<option value="02" >Sky Diving</option>
</select>
Now I was told that the way to accomplish this is with Predefined Values. I set those values up and referenced the predefined list using #!list_name as the possible values.
The Problem:
After I click on Submit in the Join Now section, it errors out with something like:
Unknown column FieldName in 'Field List'
FieldName being the name of the field that I am trying to create.
This happens no matter how little data, how much data, the kind of data in the predefined list.
If I use the multiple selection field without the predefined list, it works fine....But then I cannot have the display text in the field different from the values sent to the DB.
Please help!
Also.......I noticed too that with a default install of my dolphin software....with no added fields.......It creates profiles just fine. But then when I try to view my profile using URL/username, I get error 404 Object Not Found.