timmah1 Posted November 26, 2008 Share Posted November 26, 2008 I'm doing a time sheet and I need to calculate the hours worked in a day. I can get that with no problem, but the simplest thing of all, I can't get to work I need it to display the start time and end time, right now, it's showing 0 Here's what I have //This calculates how many hours and minutes they worked today $seconds = $a[endtime] - $a[starttime]; $minutes = ($seconds / 60) % 60; $hours = floor($seconds / (60 * 60)); //This shows the time they started, and what time they ended work today $begin = mktime($a['starttime']); $end = mktime($a['endtime']); $a[endtime] is this: 1227633359 $a[startime] is this: 1227606359 I need begin and end to show correct time Can anybody show me the correct way to display the time correctly? Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/ Share on other sites More sharing options...
.josh Posted November 26, 2008 Share Posted November 26, 2008 use date Quote Link to comment https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/#findComment-699210 Share on other sites More sharing options...
timmah1 Posted November 26, 2008 Author Share Posted November 26, 2008 Sorry Violent, I'm not understanding what you mean. I've tried doing $begin = date("h:i a", mktime($a['starttime'])); $end = date("h:i a", mktime($a['endtime'])); But it just shows up as 6:00pm no matter what Quote Link to comment https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/#findComment-699216 Share on other sites More sharing options...
.josh Posted November 26, 2008 Share Posted November 26, 2008 okay you posted: $a[endtime] is this: 1227633359 $a[startime] is this: 1227606359 so those vars are already unix timestamps, right? So no need to mktime them, as mktime is used to make unix timestamps Quote Link to comment https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/#findComment-699227 Share on other sites More sharing options...
timmah1 Posted November 26, 2008 Author Share Posted November 26, 2008 You can slap me REALLY REALLY hard if you want!! (stupid over thinking the obvious) Thank you Quote Link to comment https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/#findComment-699229 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.