denoteone Posted June 23, 2009 Share Posted June 23, 2009 Is it possible to add a week to the current date using strtotime? something like $today = date("m.d.y"); echo date($today,strtotime(+1 week)); Quote Link to comment https://forums.phpfreaks.com/topic/163395-solved-using-strtotime-to-add-a-week-to-current-date/ Share on other sites More sharing options...
Maq Posted June 23, 2009 Share Posted June 23, 2009 Something like this: $time = strtotime('+ 1 week', $time); $date = date('m.d.y', $time); Quote Link to comment https://forums.phpfreaks.com/topic/163395-solved-using-strtotime-to-add-a-week-to-current-date/#findComment-862106 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.