unix timestamps are just the number of seconds since Jan 1st 1970 which explains why they are quite a few numbers long
Just use the PHP function strtotime() on the stored value
PHP Code:<?php
$date = '2002-08-29 00:07';
echo date('l dS F', strtotime($date));
?>





Reply With Quote