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'] ?? '';
|
||
|
|
?>
|