How to display date time in real time ?
by Scud Wednesday, August 30, 2006
Rating:
Vote this news:
In this code sample we will take a look at how to display date or time in our HTML pages. In PHP date() function can be used for to display in different ways. Lat's see our sample.
Wed Aug 28 10:57:47 CDT 2006
10:57:47
August 30, 2006, 10:57 pm
Happy Coding
PHP Code on our pages :
<?php date("Y-m-d"); ?> <?php date("D M j G:i:s T Y"); ?> <?php date("H:i:s"); ?> <?php date("F j, Y, g:i a"); ?>
Output
Wed Aug 28 10:57:47 CDT 2006
10:57:47
August 30, 2006, 10:57 pm
Happy Coding



