Or can i do this only with javascript?
|
There are two ways to do this. The most obvious way is to use Javascript since it lives in the client world. The other way is to have users specify their time zone when they register for your site and then you can do some back end manipulations based on GMT to get the actual time they visited. This of course has the flaw that the user can put in the wrong time zone. |
|||||||||||||
|
|
This is not possible using PHP alone. But you could set a GET parameter via JS to the users current timestamp and compare the difference to a timestamp generated on the server. That way you compute the timezone difference between your server and your client. |
|||
|
|
|
2 solutions
|
|||||||||
|
|
There is no way this can only be done in Javascript. A How do I get a visitor's time zone in PHP? http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/ |
|||
|
|