Simply what I need to do is to have a page where there is a list of names and check boxes right next to them. Once you click the submit button at the bottom I need to traverse through the page and find each one that is checked. With that information I have to insert those names today's date and a 1 into a table in mysql.
The problem is getting the button onclick to execute some php to update the table. I believe there is a way to post to a php file some information so if I could get an array of all the checked people and pass that to the php file where it will then do they mysql queries that would be great.
I have looked around and everyone suggests one thing or another but no one gives any sort of example or even a decent description of what would need to be done.
I already have the names printed out and the checkboxes but I need some way of submitting the attendance.
Any suggestions?