How to read if a checkbox is checked in PHP?
$check_value = isset($_POST['my_checkbox_name']) ? 1 : 0;