I can't see why MySQL is causing PHP PDO to throw this error:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'disclaimer' cannot be null'[...]
There's quite a bit of code involved in this particular form front and back-end so so I'll just quote the relevant bits.
HTML:
<label for="disclaimer" class="container ten columns">*Blah blah legalese</label>
<input type="checkbox" name="dislcaimer" value="disclaimer">
PHP:
if(!isset($_POST['fname']) ||
!isset($_POST['sname']) ||
!isset($_POST['email']) ||
// and so on ...
!isset($_POST['dislcaimer']) ||
(
!isset($_POST['mf'])&&!isset($_POST['me'])&&!isset($_POST['ms'])&&!isset($_POST['wf'])&&!isset($_POST['we'])&&!isset($_POST['ws'])
)
)
{
died('We are sorry, but you appear to have left at least one of the mandatory fields blank.');
}
[...]
$disclaimer = $_POST['disclaimer']; // variable initialisation
PHP/PDO:
$data = array($first_name, $last_name, $email_from, $telephone, $dateofbirth, $licence, $club, $countynm, $mf, $me, $ms, $wf, $we, $ws, $party, $disclaimer);
$STH = $dbh->prepare("INSERT INTO competitor (fname, sname, email, phone, dob, licence, club, country, mf, me, ms, wf, we, ws, party, disclaimer) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$STH->execute($data);
MYSQL:

I just don't get it. On debugging the checkbox returns NULL, but surely it should have triggered the automatic error generated when mandatory fields are not filled in? Am I handling checkboxes entirely wrong in this setting? For other, optional checkboxes, I'm assigning some integer to them in the event that they are unticked (e.g. '0') so that this sort of error does not crop up. Do I need to do the same for this, but assign it maybe '1' if it is set...? :/
var_dump($disclaimer);– zerkms Dec 30 '12 at 11:31NULLbecause it hasn't been sent. The next debugging step: take firebug (or chrome dev tools) and look what actually has been sent in POST. The checkboxes values are only sent if they are checked. The simplest workaround - is to create hidden with the same name and value equal to your "unchecked" value. – zerkms Dec 30 '12 at 11:36