Re: [PHP] adding 60 to a date

2002-05-07 Thread Tyler Longren
Sent: Tuesday, May 07, 2002 8:55 AM Subject: Re: [PHP] adding 60 to a date > Will the fact that the server is on NT be a problem? > > On Tue, 7 May 2002, John S. Huggins wrote: > > > On Tue, 7 May 2002, Scott St. John wrote: > > > > >-Morning > > >-

Re: [PHP] adding 60 to a date

2002-05-07 Thread Jason Wong
On Tuesday 07 May 2002 21:44, Scott St. John wrote: > Morning > > I am working on a password aging system that will force a user to change > their password every 60 days. Can anyone recommend the best method for > taking the current date and adding 60 days to that number? Should I do a > uni

Re: [PHP] adding 60 to a date

2002-05-07 Thread Scott St. John
Will the fact that the server is on NT be a problem? On Tue, 7 May 2002, John S. Huggins wrote: > On Tue, 7 May 2002, Scott St. John wrote: > > >-Morning > >- > >-I am working on a password aging system that will force a user to change > >-their password every 60 days. Can anyone recomm

Re: [PHP] adding 60 to a date

2002-05-07 Thread John S. Huggins
On Tue, 7 May 2002, Scott St. John wrote: >-Morning >- >-I am working on a password aging system that will force a user to change >-their password every 60 days. Can anyone recommend the best method for >-taking the current date and adding 60 days to that number? Should I do a >-unix tim

[PHP] adding 60 to a date

2002-05-07 Thread Scott St. John
Morning I am working on a password aging system that will force a user to change their password every 60 days. Can anyone recommend the best method for taking the current date and adding 60 days to that number? Should I do a unix timestampe and add or strtotime and add 60 days? Thanks,