Showing posts with label PHP Date Time. Show all posts
Showing posts with label PHP Date Time. Show all posts

Saturday, June 28, 2014

India date and time in php

India date & time can get by setting indian zone and using date function of php. Use Below code

<?php

date_default_timezone_set('Asia/Calcutta');
echo date("H:i");
echo date("d-M-Y");

?>