Re: [PHP] date() function and timestamps

2003-07-04 Thread Jeff Harris
On Jul 3, 2003, "Garrick Linn" claimed that: |Hello all, | |I seem to be running into a problem where the date() function appears not |to differentiate properly between unix timestamps. | |For example, the code: | |"; |echo date("d-m-Y H:m:s", $seconds); |echo ""; | |$seconds = ($seconds - 60); |e

Re: [PHP] date() function and timestamps

2003-07-03 Thread Garrick Linn
Doh! Gracias. :-) At 11:58 PM 7/3/2003 +, Philip Olson wrote: :) You are using an m where you want an i. Regards, Philip On Thu, 3 Jul 2003, Garrick Linn wrote: > Hello all, > > I seem to be running into a problem where the date() function appears not > to differentiate properly between

Re: [PHP] date() function and timestamps

2003-07-03 Thread Philip Olson
:) You are using an m where you want an i. Regards, Philip On Thu, 3 Jul 2003, Garrick Linn wrote: > Hello all, > > I seem to be running into a problem where the date() function appears not > to differentiate properly between unix timestamps. > > For example, the code: > > > $seconds =

[PHP] date() function and timestamps

2003-07-03 Thread Garrick Linn
Hello all, I seem to be running into a problem where the date() function appears not to differentiate properly between unix timestamps. For example, the code: $seconds = 1054278483; echo "$seconds"; echo date("d-m-Y H:m:s", $seconds); echo ""; $seconds = ($seconds - 60); echo "$seconds"; echo