초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
39
askitem/request.php
Normal file
39
askitem/request.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
$num=$_REQUEST["num"] ??'';
|
||||
$registdate = $_REQUEST["registdate"] ??'';
|
||||
$requestdate=$_REQUEST["requestdate"] ??'';
|
||||
|
||||
$indate=$_REQUEST["indate"] ??'';
|
||||
$outdate=$_REQUEST["outdate"] ??'';
|
||||
$outworkplace=$_REQUEST["outworkplace"] ??'';
|
||||
|
||||
$steel_item=$_REQUEST["steel_item"] ??'';
|
||||
$spec=$_REQUEST["spec"] ??'';
|
||||
$steelnum=$_REQUEST["steelnum"] ??'';
|
||||
$company=$_REQUEST["company"] ??'';
|
||||
$supplier=$_REQUEST["supplier"] ??'';
|
||||
$payment=$_REQUEST["payment"] ??'';
|
||||
|
||||
$request_comment=$_REQUEST["request_comment"] ??'';
|
||||
$which=$_REQUEST["which"] ??'';
|
||||
$model=$_REQUEST["model"] ??'';
|
||||
$first_writer=$_REQUEST["first_writer"] ??'';
|
||||
$update_log=$_REQUEST["update_log"] ??'';
|
||||
$suppliercost=$_REQUEST["suppliercost"] ??'';
|
||||
$inventory=$_REQUEST["inventory"] ??'';
|
||||
$status=$_REQUEST["status"] ??'';
|
||||
|
||||
$author_id = $_REQUEST["author_id"] ??''; // Corrected to match the key in $_REQUEST array
|
||||
$author = $_REQUEST["author"] ??'';
|
||||
$al_part = $_REQUEST["al_part"] ??'';
|
||||
$al_item = $_REQUEST["al_item"] ??'';
|
||||
$al_askdatefrom = $_REQUEST["al_askdatefrom"] ??'';
|
||||
$al_askdateto = $_REQUEST["al_askdateto"] ??'';
|
||||
$al_usedday = $_REQUEST["al_usedday"] ??'';
|
||||
$al_content = $_REQUEST["al_content"] ??'';
|
||||
$status = $_REQUEST["status"] ??'';
|
||||
$e_confirm = $_REQUEST["e_confirm"] ??'';
|
||||
$e_confirm_id = $_REQUEST["e_confirm_id"] ??'';
|
||||
$al_company = $_REQUEST["al_company"] ??'';
|
||||
?>
|
||||
Reference in New Issue
Block a user