Ok sorry maybe I didnt explain properly what I was trying to do. I have 3 meetings that happen in the week one Monday, one Wednesday and one Friday. The form ive written is intended to add a record of attendance and the name of the meeting to one table in the database example of database
ID Value Text
1 256 Monday
2 261 Wednesday
3 279 Friday
ID is an autonumber, value is the attendance record, text is the name of the meeting
The form would look like this
Monday: Textbox
Wednesday : Textbox
Friday: Textbox
Submit
I though that because the 'value' and 'text' variables change I thought id need to put them in an array somehow so tried this counter approach which doesnt seem to work would a foreach loop be better?
Current output
ID Value Text
56 0
Only one record id added and the value is 0 whatever number I put into the form