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 Quote 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); Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/86393-solved-time-format-help/#findComment-441495 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.