I have date of this format March 3, 2011 in database and I need to extend it with 7 days. I mean
$date = $date + 7
yes
$oneweekfromnow = strtotime("+1 week", strtotime("<date-from-db>"));
on another note, why do you have your date in the database like that?