Lochness30
Programmer
I have a date field in a mysql table. Say dUpdated(date)
I want to increase the date by 120 days and keep it in a date format.
I tried
but that returned an integer. How can I increase in and keep it in a date format? Any help would be appreciated. Thanks!
I want to increase the date by 120 days and keep it in a date format.
I tried
Code:
$dUpdated = mktime(0, 0, 0, date("m") , date("d")+120, date("Y"));