I can't figure how could i add +7 more days on the DD (Day) value. My problem is, when the day is close on the end of the month like
07/29/2004 when i add +7 on 29 = 36, its obvious we dont have 36 on the calendar. And im creating a program below, to explode it and maybe just add +. But i think its useless if im just going to do + on the DD (Day) value. Hmm :? ## <?php $curdate = date("Y-m-d"); $plus7 = explode("-", $curdate); print (" <p>cut: " .$plus7[0]. " " .$plus7[1]. " " .$plus7[2]. " </p> Current Date: $curdate<br> +7 Dats Date: $plus7 "); ?> ## -- Louie Miranda http://www.axishift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php