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
To pass a unix timestamp use this notation
$now = time(); $now = new DateTime("@$now");