>Is there a function in PHP that will output the difference between two timestamps (hours/mins/secs), similar in >the way that getdate() extracts the date of a timestamp? Thank you.
How about subtracting the one timestamp from the other and then devide by 3600, with the remainder divided by 60 and the remainder is your seconds. Regards Jon -- Jon Farmer Systems Programmer, Entanet www.enta.net Tel 01952 428969 Mob 07763 620378 PGP Key available, send email with subject: Send PGP Key ----- Original Message ----- >> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

