cyberpac9
Registered User.
- Local time
- Yesterday, 21:22
- Joined
- Jun 6, 2005
- Messages
- 70
on my form i have a few radio buttons, check boxes, text fields and combo boxes. i am able to change and update all fields except combo boxes. it modifies the wrong table...
if on my form the combo box for a specific record shows house selected, the value of 1 (the id from combo_table) should be the value put in the main talbe...if this is changed to option 2, school, the main table should have 2 in that field...
what happens though, is if i change from 1 (house) to 2 (school) combo_table ends up looking like the following:
Code:
combo_table
------------
id value
1 house
2 school
3 work
what happens though, is if i change from 1 (house) to 2 (school) combo_table ends up looking like the following:
Code:
combo_table
------------
id value
1 house
2 house
3 work