09-20-2018, 08:08 PM
Here is the solution to add days to the current date or desired date using PHP. many project need this type speciality suppose, user subscribe account in 2 days.
PHP Code
PHP Code
Code:
<?php
echo date('Y-m-d', strtotime(' + 1 days'));
?>