11-11-2016, 04:28 PM
Sounds great. Just fyi, if you want to make that a binary thing in the db where it is 1 for yes and 0 for no, you could do something like...
$over18=Input::get('over_18');
if ($over18 == 'on'){
$over18=1;
}else{
$over18=0;
}
$over18=Input::get('over_18');
if ($over18 == 'on'){
$over18=1;
}else{
$over18=0;
}