Jump to content

Recommended Posts

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!

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 by Barand

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 by Ch0cu3r

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.