How do I insert multiple checkbox values into a table?
You should specify <input type=”checkbox” name=”Days[]” value=”Daily”>Daily<br> as array. Add [] to all names Days and work at php with this like an array. After it, you can INSERT values at different columns at db, or use implode and save values into one column. Didn’t tested it, but you can try like this. Don’t forget … Read more