Leave Requests
Manage and view employee leave requests.
You are viewing all employee leave requests.
You are viewing your own leave requests.
prepare($sql); if ($_SESSION['role'] == 'Employee') { $stmt->bindParam(':employee_id', $_SESSION['id'], PDO::PARAM_INT); } $stmt->execute(); $requests = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (PDOException $e) { die("Could not fetch leave requests."); } ?>
Manage and view employee leave requests.
You are viewing all employee leave requests.
You are viewing your own leave requests.