You are not logged in!!!"; } else { //********** BEGIN CONTENT **********// $userid = $_SESSION['user_id']; $result = $sql->prepare("SELECT punches.id as punchid, users.id as user, punches.intime as intime, punches.outtime as outtime, punches.notes as notes FROM punches INNER JOIN users ON punches.userid = users.id WHERE users.id = $userid ORDER BY punches.id DESC LIMIT 1"); $result->execute(); $last = $result->fetchObject(); echo "

Current Status

"; if(!isset($last->user)) { echo "

You do not appear to have any punches on record.

"; $status = "Out"; } else { if (!empty($last->outtime)) { $status = "Out"; $statustime = $last->outtime; } else { $status = "In"; $statustime = $last->intime; $punchid = $last->punchid; $notes = $last->notes; } echo "

You have been Punched $status since " . date('g:i a \o\n M jS, Y', strtotime($statustime)) . ".

"; } echo "

Quick Punch

"; echo "

Clicking the button below will immediately enter a new punch for you depending on your current status. Any notes you enter will be attached to the punch for your administrator to review.

"; echo "
"; echo "
"; echo ""; echo "
"; if ($status=="In") { echo ""; echo ""; } else { echo ""; echo ""; } echo "
"; if (!empty($_POST)) { if (!empty($_POST['notes'])) { $p_notes = $_POST['notes']; } else { $p_notes = ""; } if ($status=="In") { $query = "UPDATE punches SET outtime = NOW(), notes = :p_notes WHERE id = :p_punchid"; $stmt = $sql->prepare($query); $stmt->execute(array( ':p_punchid' => $punchid, ':p_notes' => $p_notes, )); } else { $query = "INSERT INTO punches (userid, notes, intime) VALUES (:p_userid, :p_notes, NOW())"; $stmt = $sql->prepare($query); $stmt->execute(array( ':p_userid' => $_SESSION['user_id'], ':p_notes' => $p_notes, )); } header('Location: '.$_SERVER['PHP_SELF']); exit; } echo "
"; echo "
"; //********** END CONTENT **********// } require_once($yaptc_inc . "footer.inc.php"); ?>