Woodburn2006 Posted November 20, 2007 Share Posted November 20, 2007 i have this date stored as DATETIME in a DB: 2009-05-05 20:30:00 i am using this code to format the data on screen: $date = strtotime($date); $nxt_time = date('G:i', $date); $nxt_date = date('d/m/Y', $date); but when it is displayed it is showing like this: 5th May 2009 - 18:00 i have other data in the db stored as: 2007-11-30 20:00:00 but this views correctly any ideas? Quote Link to comment Share on other sites More sharing options...
kenrbnsn Posted November 20, 2007 Share Posted November 20, 2007 There's no way that the code you show can be displayed that way. BTW, you can shorten your code to <?php $disp_date = date('d/m/Y G:i',$strtotime($date)); ?> Ken Quote Link to comment Share on other sites More sharing options...
rarebit Posted November 20, 2007 Share Posted November 20, 2007 Displays correctly in my test of your code... 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.