- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
14 lines
609 B
PHP
14 lines
609 B
PHP
<?php
|
|
$num = isset($row['num']) ? $row['num'] : '';
|
|
$registedate = isset($row['registedate']) ? $row['registedate'] : '';
|
|
$comment = isset($row['comment']) ? $row['comment'] : '';
|
|
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : '';
|
|
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
|
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
|
|
|
// 휴무일 관련 필드 추가
|
|
$startdate = isset($row['startdate']) ? $row['startdate'] : '';
|
|
$enddate = isset($row['enddate']) ? $row['enddate'] : '';
|
|
$periodcheck = isset($row['periodcheck']) ? $row['periodcheck'] : '0';
|
|
?>
|