watsmyname Posted December 1, 2009 Share Posted December 1, 2009 my country has time +5:45 to GMT time. all i want is to display My country's time no matter from which corner of the world user browse my website. I have tried to used javascript getTimezoneOffset function but, it still depends upon my systems time. Is there anyway to achieve this without dependency on user's computer's system time?? thanks Quote Link to comment Share on other sites More sharing options...
trq Posted December 1, 2009 Share Posted December 1, 2009 all i want is to display My country's time no matter from which corner of the world user browse my website. Then set php's timezone (date_default_timezone_set) accordingly and get the time from the server. Quote Link to comment Share on other sites More sharing options...
watsmyname Posted December 1, 2009 Author Share Posted December 1, 2009 all i want is to display My country's time no matter from which corner of the world user browse my website. Then set php's timezone (date_default_timezone_set) accordingly and get the time from the server. Thanks for the quick reply. well i have been doing that but the problem is that it affected the event date, My website has an event, and the information about the event is based on US time. And US time and our time has much difference. Actually the site is developed for the citizen of our country who resides in US. And all other stuffs has to be shown in US date and time. I just need a clock that shows our country's time. Thanks again! Quote Link to comment Share on other sites More sharing options...
trq Posted December 1, 2009 Share Posted December 1, 2009 I just need a clock that shows our country's time. So adjust the time accordingly. eg; echo date("F j, Y, g:i a", strtotime("+4 hours")); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.