Use the following as a default value:
date('Y-m-d',strtotime('next month'))

If need to add a few days to the current date i.e. the same day next week use the following:
date('Y-m-d', strtotime("+7 days"))

Post a Comment