Im trying to make a page on my site to show all users birthdays everyday so I have this to get todays date
$today = date("Y-m-d");
//shows 2008-02-19
Birth dates are stored in my DB in this format
1983-04-21
so I don't know how to get the results for today
Like how do I lookup in my mysql table for just the day and month and not worry about the year value?