I am trying to get an array of a date plus the next 13 dates to get a 14 day schedule starting from a given date.
here is my function:
$time = strtot
I recommend something like:
for($i=1;$i<=14;$i++){ echo("$i day(s) away: ".date("m/d/Y",strtotime("+$i days"))); }