I’m building a registration form with the cookbook recipes Creating pages from frontend and Email contact form I just don’t understand how to get the value to the confirmation email and textfile. Like this it doesn’t show up anywhere if selected. Thanks a lot in advance !
Line of the form:
<input type="checkbox" id="example" name="example" value="<?= $data['example'] ?? null ?>"/>
Line of the controller:
$data = [
'example' => get('example'),
];
Line of the controller:
$kirby->email([
…
'data' => [
'example' => esc($data['example']),
]
]);