-1

I'm developing web app in codeigniter which has a heavy usage of date and time. What i need to know is who's timezone we need to set (i use configuration autoload to do it)? Mine or each user needs to set theirs? or server time zone (and find out from hostgator)?...

ZameerMoh
  • 1,149
  • 1
  • 17
  • 26

1 Answers1

1

Use timezone based on user's location

in config file write

date_default_timezone_set('Europe/London');

Adarsh M Pallickal
  • 813
  • 3
  • 16
  • 37