|
1. I created an edit form whereby the end user can update multiple checkboxes of the same name, different values, different ID's.
2. The edit form dynamically creates checkbox options from a database
3. I'm storing a string of checkbox values selected by the end user in the database. Example string: 1,2,3,4,5
3. On edit of this form I need to first dynamically create the list of checkboxes from the database and two, check off those checkboxes previously selected by the end user from the string stored in the database for that end user.
I realize this may involve some splitting but how do I get the splitted out values to match up and check off the appropriate boxes? Just in case, when I created the tables that populate the checkboxes I also added a column that numbered them in case it would come in handy later.
|
|
|
|
|
|
|
|