Hi again. I have a date field in my mssql 7.0 db format : 2/14/2002 12:21:28 PM . I would like to know how to calculate the difference in seconds between 2 such timestamps.
$starttime = mktime($hour, $minute, $second, $month, $day, $year); returns :1013776613 endtime = mktime($hour, $minute, $second, $month, $day, $year); returns: 1007303960 These are the number of seconds since epoch, correct? So obviously there's something I'm missing, but not sure what I've missed :) Your help is muchly appreciated, thx Joe :) -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php