StoneHeart
StoneHeart

Reputation: 16610

Detect user timezone and display UTC time with that timezone

I have a table with UTC TIMESTAMPS column. How I display it with user timezone? Facebook uses user computer’s time settings. Facebook has no page for user setting their timezone, so I guest Facebook auto detect it. How I can achieve like Facebook? I'm using php

Upvotes: 1

Views: 1277

Answers (1)

Gevorg Ablabutyan
Gevorg Ablabutyan

Reputation: 51

You can't reliably do this on the server side. You can instead detect the user's timezone using JavaScript but it may not be totally reliable.

http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/

Upvotes: 1

Related Questions