Page 1 of 1

time

Posted: Wed Apr 02, 2008 1:11 am
by thecannonball89
whats up with the clock?

Posted: Wed Apr 02, 2008 4:00 am
by harry 3
British Slotting Time is here !!!


This function takes on daylight saving time

Function DateDiff($date1,$date2) {
$timedifference=$date2-$date1;
$corr=date("I",$date2)-date("I",$date1);
$timedifference+=$corr;
return $timedifference;