How do I get a add days to date?
I have entered_date and due_date. If 2019-08-01 is entered in the entered _date, I want the due_date to automatically populate +1month.
I have the following code:
--date('Y-m-d', strtotime('+1month'))--
Need to do something like this for due_date:
entered_date +1month
How can I do this?