systemsgotyou Posted January 19, 2014 Share Posted January 19, 2014 Hello, I need the php way to take this kind of mysql datetime field: 1390146482 and make it into this kind: 19/01/2014 I already know how to get and insert, I just need some help with translation. This datetime thing is confusing! Quote Link to comment Share on other sites More sharing options...
ginerjm Posted January 19, 2014 Share Posted January 19, 2014 You can read up on DATE_FORMAT function of MySQL (its online) or you can use the date function of php to translate it (its in the php manual) Quote Link to comment Share on other sites More sharing options...
Barand Posted January 19, 2014 Share Posted January 19, 2014 (edited) In SQL you would need FROM_UNIXTIME() function first, then you can format it mysql> SELECT DATE_FORMAT(FROM_UNIXTIME(1390146482), '%d/%m/%Y') as date; +------------+ | date | +------------+ | 19/01/2014 | +------------+ Edited January 19, 2014 by Barand Quote Link to comment Share on other sites More sharing options...
systemsgotyou Posted January 19, 2014 Author Share Posted January 19, 2014 I want to copy it from one field (the 10 digit version) and then copy it to another field as the date version like above. I am 99% sure it has to do with the datetime() function. Any help? Quote Link to comment Share on other sites More sharing options...
Ch0cu3r Posted January 19, 2014 Share Posted January 19, 2014 (edited) Not sure why you'd want to save the formatted date. Raw unformatted data should be stored, you'd format the data to your chosing when you go to display it. If you want to save the formatted date to all records then I guess you can use an update query UPDATE table SET formatted_date_field = DATE_FORMAT(FROM_UNIXTIME(non_formated_date_field), '%d/%m/%Y'); Edited January 19, 2014 by Ch0cu3r Quote Link to comment Share on other sites More sharing options...
Barand Posted January 19, 2014 Share Posted January 19, 2014 When storing dates use column type DATE, format YYYY-MM-DD. DD/MM/YYYY is as much use in a database as a chocolate teapot. You can't compare dates, sort them or use date time functions with that format. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.