Hey there....
Can someone tell me why I get a 12 hour difference with these two different expressions???
<?php
$timestamp = mktime( date("h"),date("i"),date("s"),date('m'),date('d'),date('y') );
echo date( "m.d.y h:i:s a",$timestamp ); //Gives 12hrs earlier than...
echo"<br />";
echo date("m.d.y h:i:s a");
?>
Thanks!