I want to increase date by one month but if we give current date is working but i want to increase date by nest month from the database fetched date
I tried like but it is not working
$regdate=$row2['created_date'];
$onemonth = date($regdate, strtotime("+1 month"));
How to add $regdate variable to date function…?