好吧,我使用输入类型日期/时间将值存储到 mysql,其中将数据存储为
日期:2020-08-26T18:30:00.000Z 时间:1969-12-31T19:03:00.000Z
现在要在编辑表单上打印,我执行了以下操作,但它只是不显示表单中的值
<label for="callback_date">Callback Date:</label> <input type="date" name="callback_date" value="<?php echo date("m/d/Y", strtotime($row['callback_date']));?>"class="form-control" /> <br /> <label for="callback_time">Callback Time:</label> <input type="time" name="callback_time" value="<?php echo date("h:i A", strtotime($row['callback_time']));?>" class="form-control" />
有人可以告诉我正确的方法来完成它吗?
多谢
元芳怎么了