I have almost no experience with PHP so I need some help with a small code block.
My website used to be hosted by a company within my own time zone, so I used the following code to output the date and time on my web page:
<?php
print strftime('%A, %B %d, %Y %I:%M:%S %P');
print " Pacific Time";
?>
However, I am in the process of changing to a hosting company that is in a different time zone, three hours ahead of me actually.
How do I change the time displayed on my website so that it is three hours behind the time taken from the server?