how to increment date in php

35

$date = strtotime("+1 day", strtotime("2007-02-28"));
echo date("Y-m-d", $date);

Comments

Submit
0 Comments