How to Add Month to Current Date in PHP ?
This tutorial will give you example of add month to current date using php.
1. Code:
<?php $date = date("d/m/Y", strtotime(" +1 months")); echo $date; ?>
2. Example:
Input:
current date
Output:
21/10/2022