You can also get MySQL do do it for you with guffage like:
SELECT NOW() + INTERVAL 1 MONTH;
it's also good for doing comparisons in where
SELECT whatever FROM somewhere WHERE dateField > (NOW()+INTERVAL 14 DAY);
If you've got an index on the dateField then don't do any calculations on that value, do it the other side of your comparitor otherwise the index won't be used.