- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
21 lines
694 B
PHP
21 lines
694 B
PHP
<?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'] ?? '';
|
|
?>
|