0
date range search in php
how to create a date and time range search using php and mysql???
1 Antwort
0
Connect db asusal. If you want to search between February 1 to March 1 from a date column means. Use the following query.
Select date from table where date>='2020-02-01' and date<='2020-03-01';