<?php $start = "09:30"; $end = "11:15"; list($hour, $min) = explode(":",$start); $start = $hour + round($min/60,2); list($hour, $min) = explode(":",$end); $end = $hour + round($min/60,2); var_dump($start,$end); echo ($end-$start)*4;
You have javascript disabled. You will not be able to edit any code.