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 Link to comment https://forums.phpfreaks.com/topic/183536-get-countrys-time-without-depending-upon-the-users-local-time/ 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. Link to comment https://forums.phpfreaks.com/topic/183536-get-countrys-time-without-depending-upon-the-users-local-time/#findComment-968750 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! Link to comment https://forums.phpfreaks.com/topic/183536-get-countrys-time-without-depending-upon-the-users-local-time/#findComment-968765 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")); Link to comment https://forums.phpfreaks.com/topic/183536-get-countrys-time-without-depending-upon-the-users-local-time/#findComment-968775 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.