Does anyone know how I can take a mysql datetime stamp, such as YYYY-MM-DD HH:MM:SS and either parse it or convert it to work in JavaScript's Date() function, such as.. Date('YYYY, MM, DD, HH, MM, SS);
Thank you!
|
Does anyone know how I can take a mysql datetime stamp, such as YYYY-MM-DD HH:MM:SS and either parse it or convert it to work in JavaScript's Date() function, such as.. Date('YYYY, MM, DD, HH, MM, SS); Thank you! |
|||
|
|
|
Some of the answers given here are either overcomplicated or just will not work (at least, not in all browsers). If you take a step back, you can see that the MySQL timestamp has each component of time in the same order as the arguments required by the All that's needed is a very simple split on the string:
|
|||||||||||||||
|
|
To add to the excellent Andy E answer a function of common usage could be:
In this way given a MySQL date/time in the form
|
|||||
|
|
Recent versions of JavaScript will read an ISO8601 formatted date, so all you have to do is change the space to a 'T', doing something like one of the following:
|
|||
|
|
|
A quick search in google provided this:
|
|||
|
|
|
Why not do this:
|
|||||
|
|
are you in php?
|
|||||
|
|