Hi,
I just need to do the following date calculation:
2004-12-12 + 2 = 2004-12-14
thats all.
remember: 2004(year)-12(month)-2(day)
I just need to add days to a specific date. No the current date.
Even that is so simple I cant find nothing in the web. Theres a lot for calculte using the current date. Thats not what I need.
check this:
$timestamp = strtotime("+2 day");
$tomorrow=strftime( "%Y-%m-%d",$timestamp);
echo $tomorrow; / This give me the one day after the current day /
fe example: supost today is 2004-09-06 this will give me 2004-09-07
Thats nice, but what I want is to use instead of the current date, a specific date, any date I want.