Answers for "php increment date by one month for each month"

PHP
1

php date today plus 1 month

$future_timestamp = strtotime("+1 month");
$data = date('Y-m-d', $future_timestamp);
Posted by: Guest on July-23-2020

Browse Popular Code Answers by Language