DATETIME - three hours behind timezone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:40:02Z http://stackoverflow.com/feeds/question/669287 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/669287/datetime-three-hours-behind-timezone 0 DATETIME - three hours behind timezone Coughlin 2009-03-21T13:16:57Z 2009-09-26T15:44:42Z <p>Hey,</p> <p>I am using DATETIME as a column type and using NOW() to insert. When it prints out, it is three hours behind. What can I do so it works three hours ahead to EST time?</p> <p>I am using php date to format the DATETIME on my page.</p> <p>Thanks,</p> <p>Ryan</p> http://stackoverflow.com/questions/669287/datetime-three-hours-behind-timezone/669292#669292 3 Answer by Rahul for DATETIME - three hours behind timezone Rahul 2009-03-21T13:21:28Z 2009-03-23T14:56:48Z <p>If the date stored in your database by using NOW() is incorrect, then you need to <a href="http://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html" rel="nofollow">change your MySQL server settings to the correct timezone</a>. If it's only incorrect once you print it, you need to <a href="http://nl3.php.net/manual/en/function.date-default-timezone-set.php" rel="nofollow">modify your php script to use the correct timezone</a>.</p> <p>Edit:</p> <p>Refer to <a href="http://www.w3schools.com/php/func%5Fdate%5Fdate.asp" rel="nofollow">W3schools' convenient php date overview</a> for information on how to format the date using date().</p> <p>Edit 2:</p> <p>Either you get GoDaddy to change the setting (doubtful), or you add 3 hours when you insert into the table. Refer to the <a href="http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function%5Fdate-add" rel="nofollow">MySQL date add function</a> to modify your date when you set it in the table. Something like date_add(now(), interval 3 hour) should work.</p> <p>Your exact problem is described <a href="http://www.webmasterworld.com/forum88/3069.htm" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/669287/datetime-three-hours-behind-timezone/669410#669410 0 Answer by Jack for DATETIME - three hours behind timezone Jack 2009-03-21T14:52:00Z 2009-03-21T14:52:00Z <p>Give <a href="http://us.php.net/gmdate" rel="nofollow">gmdate()</a> and <a href="http://us.php.net/gmmktime" rel="nofollow">gmmktime()</a> a look. I find timestamp arithmetic much easier if you use GMT, especially if your code runs on multiple machines, or modifying MySQL server settings isn't an option, or you end up dealing with different timezones, day light savings, etc. </p> http://stackoverflow.com/questions/669287/datetime-three-hours-behind-timezone/1481479#1481479 0 Answer by Haluk for DATETIME - three hours behind timezone Haluk 2009-09-26T15:44:42Z 2009-09-26T15:44:42Z <p>I would suggest inserting the date in UTC time zone. This will save you a lot of headache in the future (Daylight saving problems etc...)</p> <pre><code>"INSERT INTO abc_table (registrationtime) VALUES (UTC_TIMESTAMP())" </code></pre> <p>When I query my data I use the following PHP script</p> <pre><code>&lt;? while($row = mysql_fetch_array($registration)){ $dt_obj = new DateTime($row['message_sent_timestamp']." UTC"); $dt_obj-&gt;setTimezone(new DateTimeZone('Europe/Istanbul')); echo $formatted_date_long=date_format($dt_obj, 'Y-m-d H:i:s'); } ?&gt; </code></pre> <p>You can replace the datetimezone value with one of the available <a href="http://us3.php.net/manual/en/timezones.php" rel="nofollow">php timezones</a> here:</p>