- or download this
$all_minutes = $total_hours + $total_minutes;
$total_time = $total_time + $all_minutes;
$total_time_hours += int($total_time / 60);
- or download this
$all_minutes = $total_hours + $total_minutes;
$total_time_hours = int($all_minutes / 60);
- or download this
$row[0] = " " if($row[0] eq "");
$row[1] = " " if($row[1] eq "");
$row[2] = " " if($row[2] eq "");
etc..
- or download this
foreach $item(@row){
$item = " " if($item eq "");
}