I should have explained it a little better...
Example 437 shows how the functions date() and mktime() can be used together to add and subtract time.
//ten days ahead
$lastmonth = mktime(0, 0, 0, date("m"), date("d")+10, date("Y"));
//ten days back
$lastmonth = mktime(0, 0, 0, date("m")...