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)); 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); 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
Archived
This topic is now archived and is closed to further replies.