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