Re: [PHP] Need help with formatting time

2001-07-17 Thread Jason Bell
] Need help with formatting time Hello and thank you. I'm trying to find a function(method) or existing code taht takes the number of minutes that have passed in a day and returns the time of the day. For example: 780 minutes == 1pm, 0 minutes == 12am, etc,etc. so I'm

Re: [PHP] Need help with formatting time

2001-07-17 Thread Christopher Ostmo
John Holcomb pressed the little lettered thingies in this order... Hello and thank you. I'm trying to find a function(method) or existing code taht takes the number of minutes that have passed in a day and returns the time of the day. For example: 780 minutes == 1pm, 0 minutes ==

Re: [PHP] Need help with formatting time

2001-07-17 Thread Rasmus Lerdorf
That's rather simple: echo date(H:i:s,mktime(0,$minutes,0)); -Rasmus On Tue, 17 Jul 2001, John Holcomb wrote: Hello and thank you. I'm trying to find a function(method) or existing code taht takes the number of minutes that have passed in a day and returns the time of the day. For

RE: [PHP] Need help with formatting time

2001-07-17 Thread Christopher Ostmo
Jack Dempsey pressed the little lettered thingies in this order... $hours = $time / 60; $minutes = $time % 60; if($hours = 12){ $meridian = 'pm'; $hours -= 12; } else{$meridian = 'am';} if($hours == 0){$hour = '12';} echo $hours:$minutes$meridian; try something like

RE: [PHP] Need help with formatting time

2001-07-17 Thread scott [gts]
help with formatting time Hello and thank you. I'm trying to find a function(method) or existing code taht takes the number of minutes that have passed in a day and returns the time of the day. For example: 780 minutes == 1pm, 0 minutes == 12am, etc,etc. so I'm looking

RE: [PHP] Need help with formatting time

2001-07-17 Thread Jack Dempsey
]] Sent: Tuesday, July 17, 2001 5:11 PM To: Jack Dempsey Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Need help with formatting time Jack Dempsey pressed the little lettered thingies in this order... $hours = $time / 60; $minutes = $time % 60; if($hours = 12){ $meridian = 'pm'; $hours -= 12