php - how to set date and time based on users location -
this question has answer here:
- convert utc date time local date time 18 answers
 
i want set date , time based on users location.
i used following php code set date , time in indian standard time.
how find users timezone.
<?php     $timezone = "asia/kolkata";     date_default_timezone_set($timezone);     $time=date("h:i a");     $date = date("m d,y"); ?>   thanks in advance.
you need timezone javascript code, , transmit server.
examples can found here: get user timezone
Comments
Post a Comment