i am trying to run a query that grabs all names from a certain date to a certain date. in my table i have dates stored as:
$start=2002-09-23
$end=2002-09-30
here is what i want to achieve:
"select * from names where datesNames is between $start and $end"
how can i write such a query to run on mysql.
thanks for all your inputs