Help for this page

Select Code to Download


  1. or download this
    $start_total = 60*$row[2] + $row[3];
    $end_total = 60*$row[4] + $row[5];
    $total_time = $end_total - $start_total;   # in minutes
    
  2. or download this
    $total_hr = int($total_time/60)  # $total_time >= 0 
    $total_min = $total_time%60;