gpt4 book ai didi

php - 使用ajax codeigniter php根据日期检索数据库值

转载 作者:行者123 更新时间:2023-11-29 11:52:00 26 4
gpt4 key购买 nike

我想根据使用 codeigniter 在表单上选择的日期范围,使用 ajax 检索数据库值。场景非常简单。当用户从日期选择器中选择日期范围时,所需的系统应回调到数据库以检索特定学生的报告,并将检索到的值填充到新的引导表中,而无需重新加载页面以获取数据。

查看考勤结账页面:- enter image description here

数据库中的出勤表:- enter image description here

最佳答案

PHP 查询,

select *
from table_name
where date(date) between date('from date') and date('to date')

Ajax 用于此

$("#generate").on('click', function (e) {
e.preventDefault();
$.ajax({
url: 'path to controller method',
type: 'post',
data: {fromdate:$("#fromdate").val(),todate:$("#todate").val()},
success: function (data) {
alert(data);
}
});
});

对于生成按钮,将 id 指定为生成,还指定起始日期和截止日期

回显 Controller 中的内容,它将在data中以ajax成功的方式出现。您可以附加到所需的 div。

关于php - 使用ajax codeigniter php根据日期检索数据库值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33910063/

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