초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
20
guiderail/_row.php
Normal file
20
guiderail/_row.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
$num = $row['num'] ?? '';
|
||||
$is_deleted = $row['is_deleted'] ?? '';
|
||||
$registration_date = $row['registration_date'] ?? '';
|
||||
$check_type = $row['check_type'] ?? '';
|
||||
$author = $row['author'] ?? '';
|
||||
$remark = $row['remark'] ?? '';
|
||||
$update_log = $row['update_log'] ?? '';
|
||||
|
||||
// 추가된 컬럼
|
||||
$model_name = $row['model_name'] ?? '';
|
||||
$rail_width = $row['rail_width'] ?? '';
|
||||
$rail_length = $row['rail_length'] ?? '';
|
||||
$finishing_type = $row['finishing_type'] ?? '';
|
||||
$bending_components = $row['bending_components'] ?? '';
|
||||
$firstitem = $row['firstitem'] ?? '';
|
||||
$search_keyword = $row['search_keyword'] ?? '';
|
||||
$model_UA = $row['model_UA'] ?? '';
|
||||
$material_summary = $row['material_summary'] ?? '';
|
||||
?>
|
||||
Reference in New Issue
Block a user