How can you find 2 weeks from now in PHP?
I need it to be in Y,m,d format like date(), but
I can't figure it out.
I've tried:
Code:
date('Y,m,d')+14;
date('Y,m,d'+14);
date('Y,m').date('d')+14;
mktime(0,0,0,date('Y'),date('m'),date('d')+14);
None work... Any help? I also need it to be a valid date.
When it goes past the last of the month it should change the month field as well as change the day down to the relevant date.