anyone noes how to pass a group of checkboxes data into the database??
what is your database structure? checkboxes are used to indicate simple booleans. there are a variety if ways you can store booleans in a database. a common way is just a single character integer field that can either 1 or 0.
wad if i want to store the value of the checkboxes into the database?
PHPBuilder.com has an article on this very subject located here:
http://www.phpbuilder.com/columns/laflamme20001016.php3?aid=128
Is this suppose to make more sense?