I've been having trouble with inserting to a sql database with the values from an array. What I have tried before has included breaking down the array in to various variables.
However this wont work if I try to upload a lot of variables all at once. I would need to tell sql to check hundreds of variables every time, even if one or two contain something. very in efficiant so I scraped it before I even got started. Next I tried to us a do while loop on the entire insert script, so that it would run the insert script for each item in the array. This doesn't seem to work either.
I have a series of check boxes, all with the same name and different values.
This should give me an array containing all the values that where checked from the form right?
Thank you for your help!