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

19 lines
1.0 KiB
PHP

<?php
$num = isset($_REQUEST['num']) ? $_REQUEST['num'] : '';
$is_deleted = isset($_REQUEST['is_deleted']) ? $_REQUEST['is_deleted'] : '';
$registration_date = isset($_REQUEST['registration_date']) ? $_REQUEST['registration_date'] : '';
$firstitem = $_REQUEST['firstitem'] ?? '';
$model_name = isset($_REQUEST['model_name']) ? $_REQUEST['model_name'] : '';
$model_UA = $_REQUEST['model_UA'] ?? '';
$author = isset($_REQUEST['author']) ? $_REQUEST['author'] : '';
$remark = isset($_REQUEST['remark']) ? $_REQUEST['remark'] : '';
$update_log = isset($_REQUEST['update_log']) ? $_REQUEST['update_log'] : '';
$search_tag = isset($_REQUEST['search_tag']) ? $_REQUEST['search_tag'] : '';
$search_keyword = $_REQUEST['search_keyword'] ?? '';
$bar_width = isset($_REQUEST['bar_width']) ? $_REQUEST['bar_width'] : '';
$bar_height = isset($_REQUEST['bar_height']) ? $_REQUEST['bar_height'] : '';
$finishing_type = $_REQUEST['finishing_type'] ?? 'SUS마감';
$bending_components = $_REQUEST['bending_components'] ?? '';
$material_summary = $_REQUEST['material_summary'] ?? '';
?>