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
Change it to this will give you the expected format:
$effectiveDate = date('Y-m-d', strtotime("+3 months", strtotime($effectiveDate)));