Getting data posted in between two dates

后端 未结 10 1721
无人及你
无人及你 2020-12-08 00:15

How can I retrieve data from the database by querying records between two dates using CodeIgniter\'s activerecord?

10条回答
  •  無奈伤痛
    2020-12-08 01:16

    Try This:

    $this->db->where('sell_date BETWEEN "'. date('Y-m-d', strtotime($start_date)). '" and "'. date('Y-m-d', strtotime($end_date)).'"');
    

    Hope this will work

提交回复
热议问题