Dear All, I have two time variables like $time1 = "02:20:35" (i.e., HH:MM:SS format) $time2 = "03:23:45" Can I add these two variables to get a result like $result_time = "05:44:20"? Can any body help me in this issue? regards, Indrajit.
try this:
$result = mktime(02, 20, 35) + mktime(03, 23, 45);
should give you the result.
Daarius...