Hi, thanks for the reply 🙂
Ok... let me try to be more specific....
Let's say the form is for a grocery list. On that form, there's 3 items:
Milk <input type="checkbox" name="milk_box"> <input type="text" name="milk_text" size="1">
Eggs <input type="checkbox" name="milk_box"> <input type="text" name="milk_text" size="1">
Bread <input type="checkbox" name="milk_box"> <input type="text" name="milk_text" size="1">
Joe checks the checkbox to indicate that he needs milk, and Joe fills in the textfield to state where he'll be buying the milk.
I want to be able to not only store that information in the database, but, when Joe looks up his grocery list, he should be able to see that he's checked the box indicating he needs milk, and what store he indicated he'll be buying the milk from.
Is this possible?