I have two dates in 24 hour format
$fulldate_hour_start = "2013-11-11 18:16:00 ";
$fulldate_hour_end = "2013-11-11 23:30:00 ";
and I subtracted them using this
$Hours = number_format((((strtotime($fulldate_hour_end) - strtotime($fulldate_hour_start)) / 60) / 60),2);
and the result is 5 hours and 23 minutes. it should be 5 hours and 14 minutes. What is my error?