Closed q2apro closed 9 years ago
Currently time gets saved with AM or PM:
<date>01/02/2015 - 12:00am</date>
For internationalization, I suggest to save the time in 24:00 format.
24:00
Furthermore I suggest to save the date in Format: 2015-02-01
2015-02-01
PS: As a workaround I am using $cmt_date = date('H:i', strtotime($get_cmtdate[1])) . ' heute'; for now.
$cmt_date = date('H:i', strtotime($get_cmtdate[1])) . ' heute';
The saved date should be some kind of standard, yes, probably ISO 8601.
Currently time gets saved with AM or PM:
For internationalization, I suggest to save the time in
24:00
format.Furthermore I suggest to save the date in Format:
2015-02-01
PS: As a workaround I am using
$cmt_date = date('H:i', strtotime($get_cmtdate[1])) . ' heute';
for now.