- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
21 lines
748 B
PHP
21 lines
748 B
PHP
<?php
|
|
$num = $_REQUEST['num'] ?? '';
|
|
$is_deleted = $_REQUEST['is_deleted'] ?? '';
|
|
$registration_date = $_REQUEST['registration_date'] ?? '';
|
|
$exit_direction = $_REQUEST['exit_direction'] ?? '';
|
|
$author = $_REQUEST['author'] ?? '';
|
|
$remark = $_REQUEST['remark'] ?? '';
|
|
$update_log = $_REQUEST['update_log'] ?? '';
|
|
$search_tag = $_REQUEST['search_tag'] ?? '';
|
|
|
|
// 추가된 컬럼
|
|
$front_bottom_width = $_REQUEST['front_bottom_width'] ?? '';
|
|
$rail_width = $_REQUEST['rail_width'] ?? '';
|
|
$box_width = $_REQUEST['box_width'] ?? '';
|
|
$box_height = $_REQUEST['box_height'] ?? '';
|
|
|
|
$bending_components = $_REQUEST['bending_components'] ?? '';
|
|
$search_keyword = $_REQUEST['search_keyword'] ?? '';
|
|
$material_summary = $_REQUEST['material_summary'] ?? '';
|
|
?>
|