query( $query ) ; if ( $mysqli_query->num_rows > 0 ){ $status = '200' ; $mysqli->query( "INSERT INTO staff_announcement ( announcement_id, staff_id ) VALUES ( '".$array['id']."', '".$staff_info['staff_id']."' ) " ) ; // update inbox as read $select_inbox = $mysqli->query( "SELECT a.view_id FROM staff_inbox_view a LEFT JOIN inbox b ON ( a.inbox_id = b.inbox_id ) WHERE a.deleted_at IS NULL AND a.staff_id = '".$staff_info['staff_id']."' AND a.is_read = '0' AND b.deleted_at IS NULL AND b.from_table = 'announcement' AND b.from_id = '".$array['id']."'" ) ; if ( $select_inbox->num_rows > 0 ){ while ( $row_inbox = $select_inbox->fetch_assoc() ){ $mysqli->query( "UPDATE staff_inbox_view SET is_read = '1' WHERE view_id = '".$row_inbox['view_id']."'" ) ; } } } } } require( $require_sub.'footer.php' ) ; ?>