초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
26
bending/_request.php
Normal file
26
bending/_request.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
$num = isset($_REQUEST['num']) ? $_REQUEST['num'] : '';
|
||||
$memo = isset($_REQUEST['memo']) ? $_REQUEST['memo'] : '';
|
||||
$is_deleted = isset($_REQUEST['is_deleted']) ? $_REQUEST['is_deleted'] : null;
|
||||
$searchtag = isset($_REQUEST['searchtag']) ? $_REQUEST['searchtag'] : '';
|
||||
$update_log = isset($_REQUEST['update_log']) ? $_REQUEST['update_log'] : '';
|
||||
$parentnum = isset($_REQUEST['parentnum']) ? $_REQUEST['parentnum'] : '';
|
||||
$registration_date = isset($_REQUEST['registration_date']) ? $_REQUEST['registration_date'] : '';
|
||||
$imgdata = isset($_REQUEST['imgdata']) ? $_REQUEST['imgdata'] : '';
|
||||
$itemName = isset($_REQUEST['itemName']) ? $_REQUEST['itemName'] : '';
|
||||
$material = isset($_REQUEST['material']) ? $_REQUEST['material'] : '';
|
||||
$item_sep = isset($_REQUEST['item_sep']) ? $_REQUEST['item_sep'] : '';
|
||||
$item_bending = isset($_REQUEST['item_bending']) ? $_REQUEST['item_bending'] : '';
|
||||
$item_spec = $_REQUEST['item_spec'] ?? '';
|
||||
$widthsum = $_REQUEST['widthsum'] ?? 0 ;
|
||||
$model_UA = $_REQUEST['model_UA'] ?? '' ;
|
||||
$author = $_REQUEST['author'] ?? '' ;
|
||||
$search_keyword = $_REQUEST['search_keyword'] ?? '' ;
|
||||
|
||||
// 새로추가한 항목 케이스관련 컬럼
|
||||
$exit_direction = $_REQUEST['exit_direction'] ?? '';
|
||||
$front_bottom_width = $_REQUEST['front_bottom_width'] ?? '';
|
||||
$rail_width = $_REQUEST['rail_width'] ?? '';
|
||||
$box_width = $_REQUEST['box_width'] ?? '';
|
||||
$box_height = $_REQUEST['box_height'] ?? '';
|
||||
?>
|
||||
Reference in New Issue
Block a user