Is it correct that the DATETIME format in MySQL stores data as:
"yyyy-mm-dd hh:mm:ss"
Is there a way to store the DateTime a different way?
Or do I leave it as-is and then just format it differently in PHP during output?
And what about on Input...
Can a user type "3/15/2011 9:27pm" and have it end up as "yyyy-mm-dd hh:mm:ss"?
Debbie
"yyyy-mm-dd hh:mm:ss"
Is there a way to store the DateTime a different way?
Or do I leave it as-is and then just format it differently in PHP during output?
And what about on Input...
Can a user type "3/15/2011 9:27pm" and have it end up as "yyyy-mm-dd hh:mm:ss"?
Debbie
Comment