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
Following should work
$d = strtotime("+1 months",strtotime("2015-05-25")); echo date("Y-m-d",$d); // This will print **2015-06-25**