mrjgx Posted January 17, 2008 Share Posted January 17, 2008 hello all, i have problem formatting the time to be inserted into mysql database. I have read in the php.net function list and here's my code snippet: $format = '%H:%M:%S'; $strf = strftime('$format'); $today_time = time('$strf'); but when the time is inserted into the database, the time turn out to be like this: 1200531210 Is my formatting correct? please help. Thx in advance Link to comment https://forums.phpfreaks.com/topic/86393-solved-time-format-help/ Share on other sites More sharing options...
mrjgx Posted January 17, 2008 Author Share Posted January 17, 2008 nevermind. i manage to solve it using this code and it works: $format = '%H:%M:%S'; //$strf = strftime('$format'); $today = date('Y-m-d'); $today_time = strftime($format); Link to comment https://forums.phpfreaks.com/topic/86393-solved-time-format-help/#findComment-441471 Share on other sites More sharing options...
revraz Posted January 17, 2008 Share Posted January 17, 2008 Mark as solved Link to comment https://forums.phpfreaks.com/topic/86393-solved-time-format-help/#findComment-441495 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.