Jump to content

[SOLVED] display correct time


timmah1

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/134306-solved-display-correct-time/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.