Get time of all countries
Get time of all countries
http://www.worldtimeserver.com/current_time_in_UTC.aspx
Get MySQL time:
SELECT CURRENT_TIMESTAMP( )
Set Indian timezone using php:
date_default_timezone_set(“Asia/Calcutta”);
Set Indian timezone using php.ini
date.timezone: Asia/Calcutta

Post a Comment