Ever wanted to show your guests what time it is? Now you can with this very easy PHP code!

Code:
<?php
$time = time();
echo "".date("F d, Y @ g:i:s A", $time)."";
?>
Example Here

Brought to you by PHPMini