Files
sam-kd/guiderail/_request.php
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

20 lines
862 B
PHP

<?php
$num = $_REQUEST['num'] ?? '';
$is_deleted = $_REQUEST['is_deleted'] ?? '';
$registration_date = $_REQUEST['registration_date'] ?? '';
$check_type = $_REQUEST['check_type'] ?? '';
$author = $_REQUEST['author'] ?? '';
$remark = $_REQUEST['remark'] ?? '';
$update_log = $_REQUEST['update_log'] ?? '';
// 추가된 컬럼
$model_name = $_REQUEST['model_name'] ?? '';
$rail_width = $_REQUEST['rail_width'] ?? '';
$rail_length = $_REQUEST['rail_length'] ?? '';
$finishing_type = $_REQUEST['finishing_type'] ?? '';
$bending_components = $_REQUEST['bending_components'] ?? '';
$model_UA = $_REQUEST['model_UA'] ?? ''; // 인정/비인정
$firstitem = $_REQUEST['firstitem'] ?? ''; // 대분류(스크린/철재)
$search_keyword = $_REQUEST['search_keyword'] ?? ''; // 품목검색어
$material_summary = $_REQUEST['material_summary'] ?? ''; // 자재요약
?>