Hi guys, I have a bunch of tick boxes that need to be inserted into one database column on submit, but I have no idea on how to accomplish this, I was thinking maybe jQuery or Javascript, any ideas?
Here is a snippit of code:
<input type="checkbox" name="vehicle" value="Bike" />
<input type="checkbox" name="vehicle" value="Car" />
so basically, when thy click on a heckbox, the value of te chckboxes that are checked should be put in a comma delimited string or alike, so that I can easily save it to one database column instead of many.
Thanx in advance!