11-18-2016, 07:16 AM
Thanks Mudmin,
I don't suppose giving the checkboxes unique names can be done by simply changing this:
<pre></pre>
to this:
<pre></pre>
right?
I don't suppose giving the checkboxes unique names can be done by simply changing this:
<pre>
Code:
$over_18 = Input::get('over_18');
if($over_18 == 'on'){
$over_18 = 1;
}else{
$over_18 = 0;
}
to this:
<pre>
Code:
$over_18 = Input::get('over_18');
if($over_18 == 'on'){
$over_18 = over 18;
}else{
$over_18 = not over 18;
}
right?