gpt4 book ai didi

php - 使用php将datepicker中的数据插入数据库

转载 作者:行者123 更新时间:2023-11-29 04:07:44 25 4
gpt4 key购买 nike

我有一个问题,我无法解决,所以我的脚本:

 <script>
$(document).ready(function() {
$("#datepicker").datepicker({
format: 'dd-mm-yy'
});
})

我的 html:

 <div class="form-group">
<label>Date:</label>
<input class="form-control marg-left-10" name="date" type="text" id="datepicker">
</div>

我的 php:

$date = date('dd-mm-yy', strtotime($this->input->post['date']));

但是日期没有插入,在我的数据库中日期看起来像这样:0000-00-00

请帮帮我

最佳答案

使用适当的格式

//converting one date format into another
$date = date('Y-m-d', strtotime($this->input->post['date']));

关于php - 使用php将datepicker中的数据插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25482581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com