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, but you may need to change the format:
echo date('l F jS, Y (m-d-Y)', strtotime('+3 months', strtotime($DateToAdjust)));