Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.