MySQL table data question?
- by mySQL
How should my Mysql table data look like for a single checkbox that checks and see if the user has said yes if its clicked or no if its not?
Here is the checkbox.
<input type="checkbox" name="yes" id="yes" value="yes" />
I was wondering how would I add it to the following table.
CREATE TABLE IF NOT EXISTS `vote` (
`counter` int(8) NOT NULL default '0',
`value` int(8) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;