add one month in current date in php code example
Example: php date today plus 1 month
$future_timestamp = strtotime("+1 month");
$data = date('Y-m-d', $future_timestamp);
$future_timestamp = strtotime("+1 month");
$data = date('Y-m-d', $future_timestamp);