I have 2 variables which make up a date range which then needs to be searched in a MySQL database.
These are in the format 'Apr, 2011' and 'Mar, 2012' etc.
My SELECT...BETWEEN query requires '2011-04-01' and '2012-03-31', so whats the best way to provide this...
Convert the dates in PHP first?
Or is there a way to write the query to search using the original format? I tried with date_format (date, '%b, %Y') but the query found nothing.
