It's okay - I found how to do this from another posting by drew010
<?php $time = $row_comments['autotime'];
$ts = mktime( substr($time, 8, 2), substr($time, 10, 2), substr($time, 12, 2), substr($time, 4, 2), substr($time, 6, 2), substr($time, 0, 4));
echo date("r", $ts); ?>
Great - thanks drew010 ๐