In my PHP code I have a date in my variable \"$postedDate\". Now I want to get the date after 7 days, 15 days, one month and 2 months have elapsed.
Which date functi
This is very simple; try this:
$date = "2013-06-12"; // date you want to upgade echo $date = date("Y-m-d", strtotime($date ." +1 day") );