具有两个输入的datetime-local形式仅读取一个

时间:2019-07-17 18:36:39

标签: php html datetime

我有一个带有两个类型为“ datetime-local”的输入的表单,但是我的php代码只能读取最后一个。是否存在已知问题,或者我做错了什么?

我尝试更改位置,更改名称和更改ID,但这些似乎都不起作用。然后,我将其中一种字段类型更改为数字,然后进行了处理。

<form method="GET" action="/exportdata" name="CEMform" class="data-form">
    From <input type="datetime-local" name="start_CEM" id="start_CEM" > 
    To <input type="datetime-local" name="end_CEM" id="end_CEM" > 
    <input type="submit" name="submitCEM">
</form>
if ( isset( $_GET['submitCEM'] ) ) {  
    $start = $_GET['start_CEM'];
    $end = $_GET['end_CEM'];
    error_log("Order to download from ".strval($start)." to ".strval($end)."\r\n", 3, "/somepath");     
}

即使填充所有数据,我得到的也是:

  

要从2019年7月17日T18:14:12.480Z下载

0 个答案:

没有答案