- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
20 lines
862 B
PHP
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'] ?? ''; // 자재요약
|
|
?>
|