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
+25
View File
@@ -0,0 +1,25 @@
<?php
$must_login = true ;
$require_path = '../../../' ;
$require_sub = '../../' ;
require( $require_sub.'header.php' ) ;
if ( $boolean_login ){
$status = '201' ;
$mysqli_bill = $mysqli->query( "SELECT a.bill_id FROM staff_rms_bill a
WHERE a.deleted_at IS NULL AND a.staff_id = '".$staff_info['staff_id']."' AND a.bill_id = '".$array['bill_id']."'" ) ;
if ( $mysqli_bill->num_rows > 0 ){
$status = '200' ;
$mysqli->query( "UPDATE staff_rms_bill SET
deleted_at = '".TODAYDATE."'
WHERE bill_id = '".$array['bill_id']."'" ) ;
}
}
require( $require_sub.'footer.php' ) ;
?>