I set this up:
$time1=time();
Later On,
$time2=time();
if I:
echo $time1 -> 1109145600
echo $time2 -> 1109201240
But if I
echo($time2 - $time1) -> -1109145600
Why? Why is it not 55640?
Can Anyone help?
$time1=time();
Later On,
$time2=time();
if I:
echo $time1 -> 1109145600
echo $time2 -> 1109201240
But if I
echo($time2 - $time1) -> -1109145600
Why? Why is it not 55640?
Can Anyone help?

Comment