Hey guys, I have used php to create a table with checkbox’s for the user to check which staff they want to work.
I’m kinda lost as to how I go about processing only checkbox’s.
So the value of a checked box is ‘on’
The value of an unchecked box is ‘’
Each staff member has a box beside their name.
When submit is pushed it sends
Which if checked sends $_POST[‘personsname’] as a value off ‘on’, or ‘’
How do I then process this to change a value for that person in the database, to use, or not to use with out writing down all their names.
