I use
$day = date("d");
$month = date("m");
$year = date("Y");
$datenow = $year."-".$month."-".$day;
to build a date. but i need to add 7 days onto the days variable. but if i just use +7 it gives me a date of 2003-07-38. does anyone know how to get around this problem??