Ever wanted to show your guests what time it is? Now you can with this very easy PHP code!
Example HereCode:<?php
$time = time();
echo "".date("F d, Y @ g:i:s A", $time)."";
?>
Brought to you by PHPMini