将日期值分配给PHP格式的数据字段

时间:2018-06-22 18:27:29

标签: php html

使用以下格式时,打印服务器日期没有问题。

<input id="u&date" type="date" readonly  class="form-control" value="<?php echo date("Y-m-d");?>" >

It works here

但是,另一方面,当我尝试更改日期格式时,它不会显示:

<input id="u&date" type="date" readonly  class="form-control" value="<?php echo date("d-m-Y");?>" >

it doesnt work here

1 个答案:

答案 0 :(得分:0)

在第二个输入中将type =“ date”更改为type =“ text”。见下文:

<input id="u&date" type="date" readonly  class="form-control" value="<?php echo date("Y-m-d");?>" >

<input id="u&date" type="text" readonly  class="form-control" value="<?php echo date("d-m-Y");?>" >

输入type = date后,系统将重新格式化/验证日期。您的第一个输入中有破折号,但是它变为斜线。请参见下面的屏幕截图:

enter image description here