I have a variable called $effectiveDate containing the date 2012-03-26.
$effectiveDate
I am trying to add three months to this date and have been unsu
The following should work,Please Try this:
$effectiveDate = strtotime("+1 months", strtotime(date("y-m-d"))); echo $time = date("y/m/d", $effectiveDate);