Forums

Set localtime from user

how to adjust the localtime of the user when visiting my website

You would need to use javascript in the browser to get the local time of your users. Just running:

var now = new Date();

will return a Date that is the local time of your user.