This code shows you how to pull in the date and time in php.
print date("d-M-Y");
echo "<br>";
print time();
echo "<br>";
$b = time ();
print date("m/d/y",$b) . "<br>";
print date("D, F jS",$b) . "<br>";
print date("l, F jS Y",$b) . "<br>";
print date("g:i...
Show time and date in p...

