Time_and_Date / Hours_to_Minutes


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:

<? 

function h2m($hours) { 
   
$t explode("."$hours); 
   
$h $t[0]; 
   if (isset(
$t[1])) { 
      
$m $t[1]; 
   } else { 
      
$m "00"
   } 
   
$mm = ($h 60) + $m
   return 
$mm

?> 

Description

  Convert Hours to Minutes.