Forum Moderators: coopster
To print a legible date/time; you need to use the date() [uk.php.net] function.
For example:
<?php
echo date("n/j/Y g:i:s A");
?>
which will display something like:
11/16/2003 10:22:32 PM
You can format the date to your heart's content using the format string supplied to the date() function - see the reference manual (linked above) for more...
Hope this helps!