The date and time stored in my database is as:- 2017-01-11 10:01:55 I want it to insert same as know but while displaying I want it to display as timezone like in India by Asia/Kolkata timezone I have used
date_default_timezone_set('Asia/Kolkata');
$timestamp = date("Y-m-d h:m:i");
but it works in case of insert code not display and i don't want to mention which timezone can it be by default it automatically detect timezone and display acoordingly please help have tried this also
date_default_timezone_set('UTC');
no success