Hello all... Please help me out.... I am Narendran, student. I wanted to add the present time to my interface created using PHP. " echo(date("h:i:s A") . "<br />"); echo(date("l\, dS \of F Y ") . "<br />"); " This is my coding. But this represents the GMT(Greenwich Meridian Time). I am from India, so i require my time to be 5 hours and 30 mins ahead of GMT. Please help me in acheiving this time... Thanks in advance..... Regards Naren
echo(date("h:i:s A", strtotime('+5 Hours 30 Minutes')) . "<br />"); PHP: Untested but should work. Or you may as well have a look at date_default_timezone_set().