first commit

This commit is contained in:
LAPTOP-V9RRD1TL\Michelle's Computer
2025-07-21 21:38:17 +08:00
commit f8f8fcaf96
2529 changed files with 227800 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
// default config setting
$boolean_ssl_lock = true ;
include '../connect/cms-config.php' ;
include '../requires/function.php' ;
$staffs = $mysqli->query( "SELECT a.staff_id FROM staff a
WHERE a.deleted_at IS NULL AND ( a.staff_date_resigned >= '".date("Y-m-d",time())."' OR a.staff_date_resigned = '0000-00-00' OR a.staff_date_resigned IS NULL )" ) ;
if ( $staffs->num_rows > 0 ){
while ( $staff = $staffs->fetch_assoc() ){
setStaffLeaveYear( $staff['staff_id'] ) ;
}
}
?>