- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
25 lines
1.3 KiB
PHP
25 lines
1.3 KiB
PHP
<?
|
|
$num = isset($row['num']) ? $row['num'] : '';
|
|
$vendor_code = isset($row['vendor_code']) ? $row['vendor_code'] : '';
|
|
$vendor_name = isset($row['vendor_name']) ? $row['vendor_name'] : '';
|
|
$representative_name = isset($row['representative_name']) ? $row['representative_name'] : '';
|
|
$address = isset($row['address']) ? $row['address'] : '';
|
|
$business_type = isset($row['business_type']) ? $row['business_type'] : '';
|
|
$item_type = isset($row['item_type']) ? $row['item_type'] : '';
|
|
$phone = isset($row['phone']) ? $row['phone'] : '';
|
|
$mobile = isset($row['mobile']) ? $row['mobile'] : '';
|
|
$email = isset($row['email']) ? $row['email'] : '';
|
|
$fax = isset($row['fax']) ? $row['fax'] : '';
|
|
$manager_name = isset($row['manager_name']) ? $row['manager_name'] : '';
|
|
$contact_info = isset($row['contact_info']) ? $row['contact_info'] : '';
|
|
$note = isset($row['note']) ? $row['note'] : '';
|
|
$is_deleted = isset($row['is_deleted']) ? $row['is_deleted'] : '';
|
|
|
|
// 5/8 추가내용
|
|
$represent = isset($row['represent']) ? $row['represent'] : '';
|
|
$searchtag = isset($row['searchtag']) ? $row['searchtag'] : '';
|
|
$update_log = isset($row['update_log']) ? $row['update_log'] : '';
|
|
$parentnum = isset($row['parentnum']) ? $row['parentnum'] : '';
|
|
$secondordnum = isset($row['secondordnum']) ? $row['secondordnum'] : '';
|
|
$registdate = isset($row['registdate']) ? $row['registdate'] : '';
|
|
?>
|