Not real sure what you want to do? Note though that checkbox elements only get included in the form data if they are checked, so you can use isset() to determine if a given checkbox was checked:
if(isset($_POST['show_time'])) {
// checkbox was checked
}
else {
// checkbox was NOT checked
}
However, I'm not sure at this point what you actually want to do where I have the comments in that code.