Re: [PHP] Timezones and Daylight Savings Time

2003-09-25 Thread Tom Rogers
Hi, Friday, September 26, 2003, 2:55:51 AM, you wrote: JJ> Got a client site in Thailand that is about 13 hours JJ> different from the Web Server time so with any JJ> date/time stamping I need to add the 13 hours. JJ> However, when it comes time for DST, I'd hate to have JJ> to code for that or r

RE: [PHP] Timezones and Daylight Savings Time

2003-09-25 Thread J J
They want everything set to their time, so it would probably be easier just to determine the server time and add as necessary. I think... --- Jeff McKeon <[EMAIL PROTECTED]> wrote: > What if you set the server to use UTC and then used > the clients local > system setting to offset it for each cl

RE: [PHP] Timezones and Daylight Savings Time

2003-09-25 Thread Jeff McKeon
What if you set the server to use UTC and then used the clients local system setting to offset it for each client? So the server would have it's time at UTC and a client in the Eastern US would be at -4. You could then detect the web client timezone setting and adjust as needed? This is just a