> i'm developing a system which processes the results from a transponder > system for Kart timing. I'm slowly managing to get the data into a > sensible format so i can build a web based gui to it in php to allow > kart racers to analyse their own lap times and positions. > > I'm trying to establish the right field type to handle HHMMSS.fraction > time format. I've read on mysql.com that MySQL doesn't yet store the > fraction part. > > Any thoughts as without the fractional information i am down to seconds > accuracy which is pretty useless for this scenario. How about converting everything to seconds with a decimal and saving it in a DECIMAL or FLOAT column? Then when you need HHMMSS, you just convert it back from the number of seconds. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php