I have a website that allows people to post things. When they post, it gets inserted into the database and the database adds a timestamp.
When I hosted the database on my local machine, the timestamps were in my time zone. My new hosting website has it set to GMT time.
How can I make it display the time in my time zone? I've tried adding
date_default_timezone_set('America/New_York');
to my views just under the tag, but that doesn't help. Any ideas?
Should work I guess