Fetch data form two dates with different year in php i.e.11/01/2016 to 01/03/2017

66 Views Asked by At

I am trying to fetch data from two dates and its not working. My table in database is simple in this format 11/30/2016. Now i want to fetch data form 11/30/2016 to 01/03/2017 but its not showing.

here my code

$date_from='11/30/2016'; 
$date_to='01/03/2017';
$querymain="select * from table_name where created BETWEEN '$date_from' AND '$date_to'";
2

There are 2 best solutions below

1
On BEST ANSWER

Convert your date format like this

$date_from='2016-11-30'; 
$date_to='2017-01-03';
//using php  you can convert your date like
$date_from = date("Y-m-d",strtotime("11/30/2016"));
$date_to=date("Y-m-d",strtotime("01/03/2017"));
$querymain="select * from table_name where DATE(`created`) BETWEEN '$date_from' AND '$date_to'";

 try this i hope this is working for you.

Thanks

4
On

If your created column is date then you have to check date format in 2016-01-02 i.e. YYYY-mm-dd format for mysql.

Just try this.

$querymain="select * from table_name where created BETWEEN '".date("Y-m-d",strtotime($date_from))."' AND '".date("Y-m-d",strtotime($date_to))."'";