Hi,
I want to display current date and time in my system..Therefore i have created following coding.
<?php
$today= date("F j, Y, g:i a");
echo $today;
?>
This generates time based on GMT..But i want to convert the time to our country's local time which is more than 05:30 hrs.How can i modify the coding?