I am using the MySQL table below. I would like to add a field called 'subcheck' which will be the yes / no value determined by the input of the HTML form TYPE = CHECKBOX . What "type" should I give this new field?
Thanks in advance,
John
`submission` ( `submissionid` int(11) unsigned NOT NULL auto_increment, `loginid` int(11) NOT NULL, `title` varchar(1000) NOT NULL, `slug` varchar(1000) NOT NULL, `url` varchar(1000) NOT NULL, `displayurl` varchar(1000) NOT NULL, `datesubmitted` timestamp NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY (`submissionid`) )
html mysql
John
source share