Boxerman Posted April 4, 2012 Share Posted April 4, 2012 Hi all, I'm abit stuck, i've got two variables which are: $timestamp = $myrow["t_stamp"]; - Grabbed from DB - stored like 2012-04-03 14:02 (for example) $format='F j, Y, g:i a' I'm trying to get it to display like Tuesday, 3rd April 14:02 or something like that but i just cant :-\ $timestamp->format($format) is what i've tired working with etc but nothing seems to work as it is only displayed as F j, Y, g:i a as text :S Can anyone help me please. Many thanks! J Link to comment https://forums.phpfreaks.com/topic/260321-date_format/ Share on other sites More sharing options...
Muddy_Funster Posted April 4, 2012 Share Posted April 4, 2012 try $timestamp = $myrow["t_stamp"]; $format='F j, Y, g:i a'; $formatedTime = date($format, strtotime($timestamp)); Link to comment https://forums.phpfreaks.com/topic/260321-date_format/#findComment-1334236 Share on other sites More sharing options...
Boxerman Posted April 4, 2012 Author Share Posted April 4, 2012 This worked.. Thank you for your time! Link to comment https://forums.phpfreaks.com/topic/260321-date_format/#findComment-1334241 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.