July 30, 200322 yr I have field on a web page called country. I would like to populate it with a value list from filemaker pro unlimited 6. The code I am using is below. Any help on what I am doing wrong and how to fix it would be appreciated. Thanks <select name="Country"> <option value="">- No Selection - [Value_List: 'Country']</option> <option value="[Value_ListItem]">[Value_ListItem]</option>[/Value_List] </select>
August 13, 200322 yr scduddi said: I have field on a web page called country. I would like to populate it with a value list from filemaker pro unlimited 6. The code I am using is below. Any help on what I am doing wrong and how to fix it would be appreciated. Thanks <select name="Country"> <option value="">- No Selection - [Value_List: 'Country']</option> <option value="[Value_ListItem]">[Value_ListItem]</option>[/Value_List] </select> Try <select name="Country"> <option value="">- No Selection - </option> [Value_List: 'Country'] <option value="[Value_ListItem]">[Value_ListItem]</option>[/Value_List] </select>
Create an account or sign in to comment