I have a multiple checkbox of values 1 to 7 for selecting weekdays.
What is the possibility of storing the selected weekdays array in
mysql
and what type of field should i create in the table for storing the
array.
Any suggestions???
This would ensure that your selection is stored into array “days”.
You can store this as string into db with a delimiter of your choice [preferably days.join(“,”)].