On Wed, 2004-10-20 at 19:37, trenton@xxxxxxxxxxxxxxx wrote: > Why not use the date function? > > date("g:i a"); The OP wants to get the time based on a value indicating the number of minutes since midnight. He doesn't want the current time. The following should give him what he needs: ---- $iMinutes = 800; $midnight = mktime( 0, 0, 0, date( 'm' ), date( 'd' ), date( 'Y' ) ); echo date( 'g:ia', $midnight + ($iMinutes * 60 ) ); ---- Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php