- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
13 lines
625 B
PHP
13 lines
625 B
PHP
<?php
|
|
$orderdate = isset($row['orderdate']) ? $row['orderdate'] : '';
|
|
$towhom = isset($row['towhom']) ? $row['towhom'] : '';
|
|
$reply = isset($row['reply']) ? $row['reply'] : '';
|
|
$deadline = isset($row['deadline']) ? $row['deadline'] : '';
|
|
$work_status = isset($row['work_status']) ? $row['work_status'] : '';
|
|
$title = isset($row['title']) ? $row['title'] : '';
|
|
$first_writer = isset($row['first_writer']) ? $row['first_writer'] : '';
|
|
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
|
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
|
$itemsep = isset($row['itemsep']) ? $row['itemsep'] : '';
|
|
?>
|