Hi,
I have a channel which has a field containing a date in it. When I pull that value from the database and display it, it is actually displaying the day before.
I.e. in the EE publish thing I select 22nd May 2011 9:00AM and when I pull it out of the database it displays 21st May 2011.
<?php print date( 'D d F Y', $event_date); ?>With $event_date being pulled from the related entry in the database. I imagine that this has something to do with timezones? How do I set it up so that it doesn’t factor in Time Zones etc at all. If I save something as 22nd May 2010 and then pull it out using the php date function I want it to be the exact same time that I entered…