我的<input type="date" name="Date"/>
中有一个<form method="post" ... >
,我希望从此日历中获取所选值,将其转换为YYYY-MM-DD
格式,然后将其发布到我的下一页。
他们有什么帮助吗?
答案 0 :(得分:3)
根据您的想法进行修改,以便根据您的需要进行修改:
的index.php
<form method="post" action="next.php">
<input type="date" name="Date"/>
<button>done</button>
</form>
next.php
<?php
echo date('Y-m-d',strtotime($_POST['Date']));
答案 1 :(得分:2)
您可以在表单操作页面中处理日期:
echo date('Y-m-d',strtotime($_POST['date']));
注意:如果要进行任何数据库交互,请确保在结果页面中保护自己免受SQL注入。
答案 2 :(得分:1)
获取文本框值和格式(&#39; Y-m-d h:i:s&#39;)然后存储在隐藏文本框中并发布值。