add 6month to current date in php code example
Example: add 6 months to date in php
$effectiveDate = date('Y-m-d', strtotime("+3 months", strtotime($effectiveDate)));
$effectiveDate = date('Y-m-d', strtotime("+3 months", strtotime($effectiveDate)));