how to get n days from today in php
//Simple method how to get the date of tomorrow, yesterday, etc. is to use:
$tomorrow = date( "Ymd", strtotime( "+1 days" ) );
$dayaftertomorrow = date( "Ymd", strtotime( "+2 days" ) );
$yesterday = date( "Ymd", strtotime( "-1 days" ) );