- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
9 lines
296 B
PHP
9 lines
296 B
PHP
<?php
|
|
$item_subject = $row["subject"] ?? '월별 차량사진 대지';
|
|
$item_id = $row["id"] ?? '';
|
|
$nick = $row["nick"] ?? '';
|
|
$is_html = $row["is_html"] ?? '';
|
|
$content = $row["content"] ?? '';
|
|
$regist_day = $row["regist_day"] ?? '';
|
|
$car_name=$row["car_name"] ?? ''; // 차량종류
|
|
?>
|