Can you make the value of say, 10 radio buttons, the entries from one column in a table? For instance, if I wanted those 10 radio buttons to have captions of 1, 2, 3, 4, etc and I had a column of 10 numbers in a table with the value of 1, 2, 3, 4, etc, could I assign those database values to the radio button value?
<input type="radio" value=1st Entry in Table />
<input type="radio" value=2nd Entry in Table />
.
.
.
etc
I won't know what these values are beforehand so I couldn't just use a SELECT...LIKE statement.
Thanks