I'm having some trouble with a small function checking if it's christmas. I can't seem to find anything wrong with it, but it doesn't work.
function CheckSpecialDate()
{
if( date('md') >= 1210 && date('md') <= 1231 )
{
echo 'christmas';
}
else
{
echo 'nothing special';
}
};