Förutom PHP-lösningar som andra tillhandahåller kan du skapa endDate
precis inuti MySQL och spara dig lite av besväret:
SELECT startDate, DATE_ADD(startDate, INTERVAL 60 DAY) AS endDate FROM table;
-- Or by months (not exactly the same thing)
SELECT startDate, DATE_ADD(startDate, INTERVAL 2 MONTH) AS endDate FROM table;
Relevant dokumentation här.. .