- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
15 lines
527 B
PHP
15 lines
527 B
PHP
<?
|
|
|
|
// .almember 테이블의 자료
|
|
$num = isset($row["num"]) ? $row["num"] : '';
|
|
$name = isset($row["name"]) ? $row["name"] : '';
|
|
$part = isset($row["part"]) ? $row["part"] : '';
|
|
$company = isset($row["company"]) ? $row["company"] : '';
|
|
|
|
$dateofentry = isset($row["dateofentry"]) ? $row["dateofentry"] : '';
|
|
$referencedate = isset($row["referencedate"]) ? $row["referencedate"] : '';
|
|
$availableday = isset($row["availableday"]) ? $row["availableday"] : '';
|
|
$comment = isset($row["comment"]) ? $row["comment"] : '';
|
|
|
|
|
|
?>
|