好吧,我使用輸入類型日期/時(shí)間將值存儲(chǔ)到 mysql,其中將數(shù)據(jù)存儲(chǔ)為日期:2020-08-26T18:30:00.000Z 時(shí)間:1969-12-31T19:03:00.000Z現(xiàn)在要在編輯表單上打印,我執(zhí)行了以下操作,但它只是不顯示表單中的值<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" />有人可以告訴我正確的方法來(lái)完成它嗎?多謝
1 回答

元芳怎么了
TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊
您沒(méi)有使用正確的格式在輸入中輸入日期或時(shí)間。
您編輯的代碼格式正確:
<label?for="callback_date">Callback?Date:</label> ????<input?type="date"?name="callback_date"?value="<?php?echo?date("Y-m-d",?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",?strtotime($row['callback_time']));?>"??class="form-control"?/>
- 1 回答
- 0 關(guān)注
- 164 瀏覽
添加回答
舉報(bào)
0/150
提交
取消