초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
17
bendingmap/_row.php
Normal file
17
bendingmap/_row.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
$num = isset($row['num']) ? $row['num'] : '';
|
||||
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : null;
|
||||
$reg_date = isset($row['reg_date']) ? $row['reg_date'] : '';
|
||||
$author = isset($row['author']) ? $row['author'] : '';
|
||||
$remark = isset($row['remark']) ? $row['remark'] : '';
|
||||
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
||||
$search_tag = isset($row['search_tag']) ? $row['search_tag'] : '';
|
||||
|
||||
// bendingmap 테이블에 맞춘 추가 필드들
|
||||
$prodcode = isset($row['prodcode']) ? $row['prodcode'] : '';
|
||||
$railtype = isset($row['railtype']) ? $row['railtype'] : '';
|
||||
$boxsize = isset($row['boxsize']) ? $row['boxsize'] : '';
|
||||
$boxexit = isset($row['boxexit']) ? $row['boxexit'] : '';
|
||||
$frontbottom = isset($_REQUEST['frontbottom']) ? $_REQUEST['frontbottom'] : 50;
|
||||
$railwidth = isset($_REQUEST['railwidth']) ? $_REQUEST['railwidth'] : 70;
|
||||
?>
|
||||
Reference in New Issue
Block a user