Hi,
i want to compare current time and an old time.
Both are in "H i s m d Y" Format.
d Day of month, a number with leading zeroes 20
H Hour (24-hour format - leading zeroes) 22
i Minutes ( 0 - 59 ) 23
m Month of year (number - leading zeroes) 1
s Seconds of hour 20
Y Year (four digits) 2006
I read the old time from an .txt file.
$timeOld = fgets($dateizeiger, 4096);
$time = date("H i s m d Y",$t);
Now I want the difference in the same format.
Sorry for my bad english.
I would be glad of any help.