Not sure if this is what you are after, but you could do something like this:
$user_date = "2002-01-01"
This is the day the person wants to see information for.
In your query, just search for everything with a substring statement...
$query = "SELECT * from YOUR_TABLE where substring(YOUR_DATE_FIELD, 1, 10) = "$user_date"
That would give you everything for that one individual day...you can mess with this and add multiple dates, etc.
-- Jason