Oh, and $today['wday'] ... that's the day of the week.  I'm almost
positive you want the day of the month: $today['mday'].

        hth,
        ~Chris

On Wed, 11 Dec 2002, Chris Wesley wrote:

> On Wed, 11 Dec 2002, Curtis Gordon wrote:
>
> > future date:
> > <?$maturity_date = mktime (0,0,0,$mday_row[3],$mday_row[2],$mday_row[5]);?>
> > current date:
> > <?$today = getdate();?>
> > <?$now_date = mktime
> > (0,0,0,$today['month'],$today['wday'],$today['year']);?>
>
> $today['month'] is text, ie. "December", and mktime()  requires all
> integer arguments.  If you use $today['mon'] instead, it seems like
> you'll get what you want.



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

Reply via email to