I can easily add today's date to a week from now because I know that a week has exactly 7 days - just like this example:
<cfset ExpirationDate = now() + 7>
Now, what if I want to add today's date to a month from now, knowing that a month can have 28 and 29 (if month is Feb.) and 30 or 31 days for rest of the months?
<cfset ExpirationDate = now() + 7>
Now, what if I want to add today's date to a month from now, knowing that a month can have 28 and 29 (if month is Feb.) and 30 or 31 days for rest of the months?