Hi folks
In the DB I can see the column which stores the value selected from a radio field.
I am wondering where the text is stored?
ie for my radio field, one of the options could be
Some Text to Choose=0
Where would 'Some Text to Choose' be stored/located?
It turns out I know the answer.... looked for ages, must have missed it SO many times!!
#__cck_core_fields
1: Look in the DB table '#__cck_core_fields',
2: Order the rows by the field type column (ie 'type')
3: Search for the field in question
4: Look in the 'options' column, and there should be the info you require in this format:
textstuff=0||moretextstuff=1||evenmoretext=2
Hope that helps someone, it helped me....
Jon