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
+18
View File
@@ -0,0 +1,18 @@
<?php
$must_login = true ;
$require_path = '../../../' ;
$require_sub = '../../' ;
require( $require_sub.'header.php' ) ;
if ( $boolean_login ){
$status = '206' ;
if ( $mysqli->query( "UPDATE staff SET
deleted_at = '".TODAYDATE."'
WHERE staff_id = '".$staff_info['staff_id']."'" ) ){
$status = '200' ;
}
}
require( $require_sub.'footer.php' ) ;
?>