초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
18
annualleave/rowDBask.php
Normal file
18
annualleave/rowDBask.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
$num = isset($row["num"]) ? $row["num"] : '';
|
||||
$author_id = isset($row["author_id"]) ? $row["author_id"] : ''; // Using corrected key
|
||||
$author = isset($row["author"]) ? $row["author"] : '';
|
||||
$al_company = isset($row["al_company"]) ? $row["al_company"] : '';
|
||||
$al_part = isset($row["al_part"]) ? $row["al_part"] : '';
|
||||
$registdate = isset($row["registdate"]) ? $row["registdate"] : '';
|
||||
$al_item = isset($row["al_item"]) ? $row["al_item"] : '';
|
||||
$al_askdatefrom = isset($row["al_askdatefrom"]) ? $row["al_askdatefrom"] : '';
|
||||
$al_askdateto = isset($row["al_askdateto"]) ? $row["al_askdateto"] : '';
|
||||
$al_usedday = isset($row["al_usedday"]) ? $row["al_usedday"] : '';
|
||||
$al_content = isset($row["al_content"]) ? $row["al_content"] : '';
|
||||
$status = isset($row["status"]) ? $row["status"] : '';
|
||||
$e_line = isset($row["e_line"]) ? $row["e_line"] : '';
|
||||
$e_confirm = isset($row["e_confirm"]) ? $row["e_confirm"] : '';
|
||||
$e_confirm_id = isset($row["e_confirm_id"]) ? $row["e_confirm_id"] : '';
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user