On Wed, 28 Jul 2004 11:30:42 +0800, Louie Miranda <[EMAIL PROTECTED]> wrote:
> 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
> 
> ");
> ?>
> ##
> 

$add7days = date('Y-m-d', strtotime($oldDate) + 7 * 24 * 60 * 60);

-- 
DB_DataObject_FormBuilder - The database at your fingertips
http://pear.php.net/package/DB_DataObject_FormBuilder

paperCrane --Justin Patrin--

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to