I want to set date and time based on users location.
I used the following php code to set the date and time in indian standard time.
how to find the users timezone.
<?php
$timezone = "Asia/Kolkata";
date_default_timezone_set($timezone);
$time=date("h:i a");
$date = date("M d,Y");
?>
thanks in advance.