How about something like this:

$secs = number of seconds;
$hours = intval($secs/360);
$minutes = intval(($secs-$hours*360)/60)
$seconds = $secs - $hours*360 - $minutes * 60;

Hope this helps.

Michael Ridinger

On Mon, 19 Mar 2001, Yoshi Melrose wrote:

> Can someone direct me or send me a script that will convert number of
> seconds into a format readable as HH:mm? I've tried making it myself, but it
> gets all messed up in the calculations. Thanks!!!!
> 
> Yoshi
> 
> 
> 


-- 
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]

Reply via email to