Files
sam-kd/shutterbox/_request.php

21 lines
748 B
PHP
Raw Permalink Normal View History

<?php
$num = $_REQUEST['num'] ?? '';
$is_deleted = $_REQUEST['is_deleted'] ?? '';
$registration_date = $_REQUEST['registration_date'] ?? '';
$exit_direction = $_REQUEST['exit_direction'] ?? '';
$author = $_REQUEST['author'] ?? '';
$remark = $_REQUEST['remark'] ?? '';
$update_log = $_REQUEST['update_log'] ?? '';
$search_tag = $_REQUEST['search_tag'] ?? '';
// 추가된 컬럼
$front_bottom_width = $_REQUEST['front_bottom_width'] ?? '';
$rail_width = $_REQUEST['rail_width'] ?? '';
$box_width = $_REQUEST['box_width'] ?? '';
$box_height = $_REQUEST['box_height'] ?? '';
$bending_components = $_REQUEST['bending_components'] ?? '';
$search_keyword = $_REQUEST['search_keyword'] ?? '';
$material_summary = $_REQUEST['material_summary'] ?? '';
?>