I will convert all date & time input by user (local time) to UTC and store it in database. When display back I will convert UTC time to their time zone which is set in their profile. Is it good?
|
|
I think it's good enough. Besides storing user timezone in profile, you can also let client (for example, javascript) convert UTC time according to user computer time zone. |
|||
|
|
|
As long as you can convert to/from any time zone from your stored DB records, that's all you need. What you've described will work. |
|||
|
|
|
Note some MySQL documentation in regards to timezone & server/client workings:
So, normally, in your proposed solution, all is right, but don't let the actual server or client timezone changing catch you of guard. |
|||
|
|