Hello all,
I have this in PHP:
$current_month = date(F); //output: September
$current_day = date(d); //output: 27
$current_year = date(Y); //output: 2001
so, current date is September 27, 2001
How do I find the date exactly one month (or two weeks) from the current date?
Please help... thank you,
Chris