echo date ("l dS of F Y h:i:s A");
However, I need to add 12 hrs to this date befor displaying on the webpage. Can someone please help me to modify the above code?
$t = time() + (12 * 60 * 60); echo date ("l dS of F Y h:i:s A", $t);
Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php