3

How to change the time zone to UTC to browser location. example time is 2014-01-01 10:10:10 (UTC)

I needed it depends upon the location (Browser depended)

Is its possible in PHP? Or using Jquery.(JavaScript)

Pramod
  • 2,828
  • 6
  • 31
  • 40
ZendMax
  • 88
  • 5

1 Answers1

0
date_default_timezone_set("Asia/Kolkata"); 
 echo date('d-m-Y H:i:s'); 

Use this function to set timezone

http://www.w3schools.com/php/php_ref_timezones.asp

Check this url to timezones

Deeban Babu
  • 729
  • 1
  • 15
  • 49