How do I count the hours and mins between the 2 time, like for example:
between 9:00 and 6:20
I want to count the time from in to out. what should be retrieve is 9:20.
I am using codeigniter for these;
$in = date('h:i',strtotime("09:00:00"));
$out = date('h:i',strtotime("06:20:00"));