Hi Here is my Code. Iam trying to convert min to hours. buts its coming 160.5 instead of 160.3.help me in that pls..
regards
apking
Code:
while($res_proj_hrs = mysql_fetch_object($qry_proj_hrs))
{
$hr = $res_proj_hrs->hrs;
$min = $res_proj_hrs->mins;
if($hr || $min){
$getHour =getCorrectTime($hr,$min);
$totmin = $hr * 60 + $min;
$tothour += $totmin;
//$tothour = $tothour + $getHour;
}
else
$getHour = "0.00";
//Print line
<td align='center'><?php echo $tothour / 60 ?></td>
apking
Comment