Timestamp is EST, how do I make it PST?

Status
Not open for further replies.

gaa5387136

New Member
Messages
1
Reaction score
0
Points
1
I have a NOW timestamp on my website, and the entries show up as Eastern Standard Time. Is there a way to change it to display in Pacific Standard Time, by possibly forcing it to enter MySQL database as PST, or another way?
 

ttbx10ho

Member
Messages
62
Reaction score
5
Points
8
should be able to add this into the php script. if you do not have and admin control panel.
Code:
<?php date_default_timezone_set('America/Los_Angeles'); ?>
 
Status
Not open for further replies.
Top