How do I calculate the difference between two dates in hours?
For example:
day1=2006-04-12 12:30:00 day2=2006-04-14 11:30:00
In thi
$t1 = strtotime( '2006-04-14 11:30:00' ); $t2 = strtotime( '2006-04-12 12:30:00' ); $diff = $t1 - $t2; $hours = $diff / ( 60 * 60 );