Re: [PHP] Dates and Date()

2002-07-29 Thread Christopher J. Crane
inal Message - > From: "1LT John W. Holmes" <[EMAIL PROTECTED]> > To: "Christopher J. Crane" <[EMAIL PROTECTED]>; "Andrey Hristov" > <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Monday, July 29, 2002 7:12 PM > Subject:

Re: [PHP] Dates and Date()

2002-07-29 Thread Christopher J. Crane
; To: "Christopher J. Crane" <[EMAIL PROTECTED]>; "Andrey Hristov" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 12:12 PM Subject: Re: [PHP] Dates and Date() > > Ok here is what I did. > > $Hist_Time = gmstrftime('%m:%d:%Y

Re: [PHP] Dates and Date()

2002-07-29 Thread 1LT John W. Holmes
r way, I'm glad you helped him and he got it figured out... ---John Holmes... - Original Message - From: "Andrey Hristov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 12:17 PM Subject: Re: [PHP] Dates and Date() > The guy just w

Re: [PHP] Dates and Date()

2002-07-29 Thread Andrey Hristov
e people always experiment some not. Kind regards, Andrey Hristov - Original Message - From: "1LT John W. Holmes" <[EMAIL PROTECTED]> To: "Christopher J. Crane" <[EMAIL PROTECTED]>; "Andrey Hristov" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>

Re: [PHP] Dates and Date()

2002-07-29 Thread Andrey Hristov
PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 7:08 PM Subject: Re: [PHP] Dates and Date() > very nice... thank you! > - Original Message - > From: "Andrey Hristov" <[EMAIL PROTECTED]> > To: "Christopher J. Crane" <[EMAIL PR

Re: [PHP] Dates and Date()

2002-07-29 Thread 1LT John W. Holmes
> Ok here is what I did. > $Hist_Time = gmstrftime('%m:%d:%Y', strtotime("-10 days")); > > Now I am wondering if there is a way to look for only the last day business > days and be returned in an array? What have you tried? How much longer do we have to hold your hand? Not to be too rude or any

Re: [PHP] Dates and Date()

2002-07-29 Thread Christopher J. Crane
very nice... thank you! - Original Message - From: "Andrey Hristov" <[EMAIL PROTECTED]> To: "Christopher J. Crane" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 12:04 PM Subject: Re: [PHP] Dates and Date() > Use while

Re: [PHP] Dates and Date()

2002-07-29 Thread Andrey Hristov
nter-1),2002); } } HTH Regards, Andrey - Original Message - From: "Christopher J. Crane" <[EMAIL PROTECTED]> To: "Andrey Hristov" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 7:00 PM Subject: Re: [PHP] Dates and Date()

Re: [PHP] Dates and Date()

2002-07-29 Thread Christopher J. Crane
ECTED]> To: "Christopher J. Crane" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 10:59 AM Subject: Re: [PHP] Dates and Date() > > > - Original Message - > From: "Christopher J. Crane" <[EMAIL PROTECTED]> > To:

Re: [PHP] Dates and Date()

2002-07-29 Thread Andrey Hristov
- Original Message - From: "Christopher J. Crane" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 5:51 PM Subject: [PHP] Dates and Date() > I believethisto be one way to find out yesterday's date: > $tomorrow = mktime (0,0,

Re: [PHP] Dates and Date()

2002-07-29 Thread Analysis & Solutions
On Mon, Jul 29, 2002 at 10:51:39AM -0400, Christopher J. Crane wrote: > I believethisto be one way to find out yesterday's date: > $tomorrow = mktime (0,0,0,date("m") ,date("d")-1,date("Y")); > > However, I would like to have a snippet of code to tell me how to get the > date of today - 10 days

Re: [PHP] Dates and Date()

2002-07-29 Thread Rasmus Lerdorf
$ts = strtotime("-10 days"); On Mon, 29 Jul 2002, Christopher J. Crane wrote: > I believethisto be one way to find out yesterday's date: > $tomorrow = mktime (0,0,0,date("m") ,date("d")-1,date("Y")); > > However, I would like to have a snippet of code to tell me how to get the > date of today

[PHP] Dates and Date()

2002-07-29 Thread Christopher J. Crane
I believethisto be one way to find out yesterday's date: $tomorrow = mktime (0,0,0,date("m") ,date("d")-1,date("Y")); However, I would like to have a snippet of code to tell me how to get the date of today - 10 days ago. if today is jul 29, 2002, how do I get the date funtion to tell me 10 day