Hey,
I have already set $_Session['time'] = time(); and am now trying to calculate the difference between the session start time and the current time by:
<?php
$CurrentTime = Time();
$ElapsedTime = $CurrentTime -$_Session['time'];
Echo "Elapsed Time: $ElapsedTime";
?>
The only thing is it displays: "Elapsed Time: 1112221555 " ... Why is this number so high when its only been a few seconds?