I have a database table with column DATETIME called 'entry_date', such as...
ID entry_date
1 2012-10-13
2 2012-10-14
3 2012-10-15
4 2012-10-20
5 2012-10-20
6 2012-10-21
Whats the best way of echoing out the result for based on DATE in PHP/MYSQL, so i get just the results for this week so 2012-10-15 > 2012-10-21, but obviously i can't just code that out because days change, everyday :) so how would you do that in php so tomorrow the condition for this week would be 2012-10-16 > 2012-10-22