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'";
Convert your date format like this
Thanks