Consider the following UNIX timestamp:
1298063318
My MySQL server translates this into the following UTC/GMT datestring:
MYSQL> DATE_FORMAT(FROM_UNIXTIME(1298063318), '%Y/%m/%d %H:%i')
MYSQL> 2011/02/18 22:08
So far so good; the IBBoard timestamp converter gives the same output.
However, the IBBoard also translates the timestamp into a EST (GMT-5) datestring:
18/2/2011, 15:08
Since EST is UTC/GMT - 5 hours (=18,000 seconds), I thought the following would give me 2011/02/18, 15:08 as well:
MYSQL> SELECT DATE_FORMAT(FROM_UNIXTIME(1298063318 -18000), '%Y/%m/%d %H:%i')
MYSQL> 2011/02/18 17:08
However, it is off two hours. My question is ** what am I doing wrong here? ** My MySQL server is set to Europe/Paris (GMT+1) timezone. I am able to change this if necessary. Regardless, with what query can I produce 2011/02/18, 15:08 (and not 17:08) as the correct EST datestring from the 1298063318 UNIX timestamp?
SELECT DATE_FORMAT( FROM_UNIXTIME( 1298063318 ) , '%Y/%m/%d %H:%i' ), I still get2011/02/18 16:08while ibboard.co.uk/timestamp.php?timestamp=1298063318&tz=0 gives 15:08. Why is my conversion still an hour off? – Pr0no Apr 8 '12 at 15:03