I have a page where I want to display events only for the current month and want this to be dynamic. I don't want to have to manually change anything each month. So for example, I have a table with the following fields
DATE_TODAY
TITLE
DESCRIPTION
I want the page to only list items for June at the moment. So the output would look like
6/11/10 - some information...
6/21/10 - some information...
6/21/10 - some information...
6/21/10 - some information...
6/23/10 - some information...
6/24/10 - some information...
etc...
Right now I am only able to display everything. How can I set up the database query to only display information for a particular month?
Thanks
I'm learning as I go...