LAPTOP-V9RRD1TL\Michelle's Computer f8f8fcaf96 first commit
2025-07-21 21:38:17 +08:00

29 lines
879 B
PHP

<?php
$must_login = true ;
$require_path = '../../../' ;
$require_sub = '../../' ;
require( $require_sub.'header.php' ) ;
if ( $boolean_login ){
$status = '201' ;
$search_query = '' ;
$search_query .= " AND payment_slip_id = '".$array['id']."'" ;
$query = "SELECT * FROM staff_payment_slip
WHERE deleted_at IS NULL AND staff_id = '".$staff_info['staff_id']."' " . $search_query ;
$mysqli_query = $mysqli->query( $query . " LIMIT 1" ) ;
if ( $mysqli_query->num_rows > 0 ){
$status = '200' ;
$row = $mysqli_query->fetch_assoc() ;
$row['payment_file'] = ( $row['payment_file'] != '' ? PATH.'uploads/PaymentSlip/b/'.$row['payment_file'] : '' ) ;
$data['list'] = $row ;
}
}
require( $require_sub.'footer.php' ) ;
?>