Giving a starting date, I\'m adding four times seven days to get 5 different dates separated exactly a week each one.
//$date = \'28-10-2010\'; $timestamp = mkti
In case someone needs this, just like me referencing the site: Today, current time, Y-m-d H:i:s, plus +7 Days. OR you could add +3 Months, etc.
$timestamp=strtotime("+7 Days"); $nowtime = date('Y-m-d H:i:s', $timestamp);