- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
18 lines
720 B
PHP
18 lines
720 B
PHP
<?php
|
|
$num = $_REQUEST['num'] ?? '';
|
|
$is_deleted = $_REQUEST['is_deleted'] ?? '';
|
|
$update_log = $_REQUEST['update_log'] ?? '';
|
|
$use_date = $_REQUEST['use_date'] ?? '';
|
|
$car_number = $_REQUEST['car_number'] ?? '';
|
|
$department = $_REQUEST['department'] ?? '';
|
|
$position = $_REQUEST['position'] ?? '';
|
|
$caruser_name = $_REQUEST['caruser_name'] ?? '';
|
|
$usage_purpose = $_REQUEST['usage_purpose'] ?? '';
|
|
$operation_details = $_REQUEST['operation_details'] ?? '';
|
|
$departure = $_REQUEST['departure'] ?? '';
|
|
$destination = $_REQUEST['destination'] ?? '';
|
|
$driving_distance = $_REQUEST['driving_distance'] ?? '';
|
|
$arrival_cumulative_distance = $_REQUEST['arrival_cumulative_distance'] ?? '';
|
|
$note = $_REQUEST['note'] ?? '';
|
|
?>
|