DBA Well-known member Jul 15, 2013 #1 How does the post_date in the database translate into "July 15, 2013" dates? For example here's one I just copied from the database. 1373902086
How does the post_date in the database translate into "July 15, 2013" dates? For example here's one I just copied from the database. 1373902086
P Paul B XenForo moderator Staff member Jul 15, 2013 #2 That is a UNIX timestamp. http://www.onlineconversion.com/unix_time.htm
Jeremy in memoriam 1991-2020 Jul 15, 2013 #3 Doing it manually you can use a converter such as this: http://www.epochconverter.com/ PHP has several functions in which this can be done. I believe JavaScript does as well.
Doing it manually you can use a converter such as this: http://www.epochconverter.com/ PHP has several functions in which this can be done. I believe JavaScript does as well.
DBA Well-known member Jul 15, 2013 #4 Brogan said: That is a UNIX timestamp. http://www.onlineconversion.com/unix_time.htm Click to expand... King Kovifor said: Doing it manually you can use a converter such as this: http://www.epochconverter.com/ PHP has several functions in which this can be done. I believe JavaScript does as well. Click to expand... Interesting, thanks guys.
Brogan said: That is a UNIX timestamp. http://www.onlineconversion.com/unix_time.htm Click to expand... King Kovifor said: Doing it manually you can use a converter such as this: http://www.epochconverter.com/ PHP has several functions in which this can be done. I believe JavaScript does as well. Click to expand... Interesting, thanks guys.