today 22-05-2011 so it should be 29-05-2011? ( plus 1 week ) or today 22-05-2011 so it should be 15-05-2011? ( minus 1 week )
thanks for looking
You can use the DateTime class to do calendar calculations. For exaple, to add one week, you could use code like this:
$date = new DateTime('22-05-2011'); $date->modify('+1 week');