In many type of websites like blog , e commerce and other we need to display time in the site.

But many times if you run a website for a specific region and country then you need to show the specific time of that location in your website but as we all know if you use normal PHp code the server time will be displayed so here is the solution.

date("H:i.s",time()+5);
It will show the date and time but +5 at last will increase the time by five hours. You can change or adjust that +5 (you can even write -5) according to the time you want.