我正在尝试执行一个查询,在其中选择开始日期和结束日期,并且页面应显示在这些日期之间存储的所有记录,我在视图上有两个输入类型,请看一下示例。
这是我的控制器:
public function reportes(){
if ($_POST) {
$fecha=$_POST['fecha'];
}else{
$fecha = '';
}
$fecha = $this->input->post('fecha');
$fechaf = $this->input->post('fechaf');
$this->db->select('empleados.Interno, empleados.Curp, empleados.Nombre, empleados.A_Paterno, empleados.A_Materno, cuentas.Clabe, cuentas.Banco, cuentas.Observaciones, cuentas.Status, cuentas.Fecha_alta');
$this->db->from('empleados');
$this->db->join('cuentas',"cuentas.Interno = empleados.Interno AND cuentas.Status !='I'", 'Left');
$this->db->where('DATE(cuentas.Fecha_alta) BETWEEN cuentas.Fecha_baja AND cuentas.Fecha_alta', $fechaf, $fecha);
$q = $this->db->get();
$data['records'] = $q->result_array();
$this ->load -> view('sitio/reportes', $data);
}
这是视图:
<form action="<?php echo base_url();?>Inicio/reportes" method="post">
ENTRE <input type="date" name="fecha" id="fecha">
Y <input type="date" name="fechaf" id="fechaf">
<input type="submit" name="aceptar" id="aceptar" value="Aceptar" class="btn btn-primary">
</form>
我认为我只需要将fecha(start_date)和fechaf(end_date)的值传递给select查询,但是我似乎无法弄清楚。 提前致谢!
答案 0 :(得分:1)
希望这对您有帮助:
执行以下操作:
$fecha = $this->input->post('fecha');
$fechaf = $this->input->post('fechaf');
$this->db->select('empleados.Interno, empleados.Curp, empleados.Nombre, empleados.A_Paterno, empleados.A_Materno, cuentas.Clabe, cuentas.Banco, cuentas.Observaciones, cuentas.Status, cuentas.Fecha_alta');
$this->db->from('empleados');
$this->db->join('cuentas',"cuentas.Interno = empleados.Interno AND cuentas.Status !='I'", 'Left');
//$this->db->where('DATE(cuentas.Fecha_alta) BETWEEN cuentas.Fecha_baja AND cuentas.Fecha_alta', $fechaf, $fecha);
$this->db->where('cuentas.Fecha_alta >=', $fecha);
$this->db->where('cuentas.Fecha_alta <=', $fechaf);