$date = "2002-11-05";
$next = 5;
$date_array = explode("-", $date);
$year = $date_array[0];
$month = $date_array[1];
$day = $date_array[2];
$newdate = date("Y-m-d", mktime(0,0,0,$day + $next, $month, $year);
print($newdate);
This will print "2002-11-10"
That's just one way to do it...off the top of my head.
If you are using MySQL you can also look at the 'date_add' functions inside of MySQL, they are quite useful.
-- Jason