Files
sam-kd/phonebook_SU/_request.php
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

25 lines
1.5 KiB
PHP

<?
$num = isset($_REQUEST['num']) ? $_REQUEST['num'] : '';
$vendor_code = isset($_REQUEST['vendor_code']) ? $_REQUEST['vendor_code'] : '';
$vendor_name = isset($_REQUEST['vendor_name']) ? $_REQUEST['vendor_name'] : '';
$representative_name = isset($_REQUEST['representative_name']) ? $_REQUEST['representative_name'] : '';
$address = isset($_REQUEST['address']) ? $_REQUEST['address'] : '';
$business_type = isset($_REQUEST['business_type']) ? $_REQUEST['business_type'] : '';
$item_type = isset($_REQUEST['item_type']) ? $_REQUEST['item_type'] : '';
$phone = isset($_REQUEST['phone']) ? $_REQUEST['phone'] : '';
$mobile = isset($_REQUEST['mobile']) ? $_REQUEST['mobile'] : '';
$email = isset($_REQUEST['email']) ? $_REQUEST['email'] : '';
$fax = isset($_REQUEST['fax']) ? $_REQUEST['fax'] : '';
$manager_name = isset($_REQUEST['manager_name']) ? $_REQUEST['manager_name'] : '';
$contact_info = isset($_REQUEST['contact_info']) ? $_REQUEST['contact_info'] : '';
$note = isset($_REQUEST['note']) ? $_REQUEST['note'] : '';
$is_deleted = isset($_REQUEST['is_deleted']) ? $_REQUEST['is_deleted'] : null;
$represent = isset($_REQUEST['represent']) ? $_REQUEST['represent'] : '';
$searchtag = isset($_REQUEST['searchtag']) ? $_REQUEST['searchtag'] : '';
$update_log = isset($_REQUEST['update_log']) ? $_REQUEST['update_log'] : '';
$parentnum = isset($_REQUEST['parentnum']) ? $_REQUEST['parentnum'] : '';
$secondordnum = isset($_REQUEST['secondordnum']) ? $_REQUEST['secondordnum'] : '';
$registdate = isset($_REQUEST['registdate']) ? $_REQUEST['registdate'] : '';
?>