Hi,
I have to calculate login and logout time of an user. I store the session creation and session out time. How do I calculate the minutes or hours user have loged in. Do u have any code snippet for it?
|
Go4Expert Founder
|
![]() |
| 30Oct2010,11:09 | #2 |
|
What is the time storing unit. Is it unix time stamp?
Try this. Code:
$beginTimeConverted=strtotime($beginTime); $endTimeConverted=strtotime($endTime); // perform subtraction $timeDiff=$endTimeConverted-$beginTimeConverted; |
|
Contributor
|
|
| 1Nov2010,07:42 | #3 |
|
Thanks, It will help in writing the code.
|

