Re: [PHP] days between two timestamps

2002-06-05 Thread Tyler Longren
quot;1LT John W. Holmes" <[EMAIL PROTECTED]> To: "Tyler Longren" <[EMAIL PROTECTED]>; "php-general" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 10:09 AM Subject: Re: [PHP] days between two timestamps > Since those look like MySQL timestamps,

Re: [PHP] days between two timestamps

2002-06-05 Thread Martin Clifford
convert the number of seconds into days. ---John Holmes... - Original Message - From: "Tyler Longren" <[EMAIL PROTECTED]> To: "php-general" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 11:01 AM Subject: [PHP] days between two timestamps > Hi, > >

Re: [PHP] days between two timestamps

2002-06-05 Thread Jason Wong
On Wednesday 05 June 2002 23:01, Tyler Longren wrote: > Hi, > > I have two different timestamps: > 20020603164114 > and > 20020605054710 > > Is there a simple way to get the number of days between the two dates? These look like mysql timestamps. If you're getting them from mysql, you might try a

Re: [PHP] days between two timestamps

2002-06-05 Thread 1LT John W. Holmes
[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 11:01 AM Subject: [PHP] days between two timestamps > Hi, > > I have two different timestamps: > 20020603164114 > and > 20020605054710 > > Is there a simple way to get the number of days between the two dates?

Re: [PHP] days between two timestamps

2002-06-05 Thread Martin Clifford
Use substr() to extract the appropriate information, then format it and compare it. 20020603 is obviously June 3, 2002 and 20020605 is obviously June 5, 2002 which means there was 1 day (plus x hours) between the two. Hope to help! Martin >>> "Tyler Longren" <[EMAIL PROTECTED]> 06/05/02 11:01

[PHP] days between two timestamps

2002-06-05 Thread Tyler Longren
Hi, I have two different timestamps: 20020603164114 and 20020605054710 Is there a simple way to get the number of days between the two dates? thanks, tyler -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php