How do I add a certain number of days to the current date in PHP?
I already got the current date with:
$today = date(\'y:m:d\');
Ju
$NewDate=Date('Y-m-d', strtotime('+365 days'));
echo $NewDate; //2020-05-21