En plus des solutions PHP fournies par d'autres, vous pouvez créer la endDate
directement à l'intérieur de MySQL et évitez les ennuis :
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;
Documentation pertinente ici.. .