disca Posted December 24, 2006 Posted December 24, 2006 How can I display date and time in the home page? Thanks. Merry Christmas!
Guest Posted December 24, 2006 Posted December 24, 2006 The date should already be showing in the footer. You can change the look of this date by altering DATE_FORMAT_LONG in the language file.
spax Posted December 26, 2006 Posted December 26, 2006 Here you go! Put this in a table cell where you want and Merry Christmas. <?php echo strftime(DATE_FORMAT_LONG); ?> <span id="liveclock" style="position:relative;left:0;top:0;"> </span> <script language="JavaScript"> <!-- /* Upper Corner Live clock script credit: JavaScript Kit (www.javascriptkit.com) More free scripts here! */ function show5(){ if (!document.layers&&!document.all&&!document.getElementById) return var Digital=new Date() var hours=Digital.getHours() var minutes=Digital.getMinutes() var seconds=Digital.getSeconds() var dn="PM" if (hours<12) dn="AM" if (hours>12) hours=hours-12 if (hours==0) hours=12 if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds //change font size here to your desire myclock="<span class='clock'> "+hours+":"+minutes+":" +seconds+" "+dn+"</span>" if (document.layers){ document.layers.liveclock.document.write(myclock) document.layers.liveclock.document.close() } else if (document.all) liveclock.innerHTML=myclock else if (document.getElementById) document.getElementById("liveclock").innerHTML=myclock setTimeout("show5()",1000) } window.onload=show5 //--> </script><noscript><?php echo date("h:i:s A"); ?></noscript> EDIT: Put spaces where you need to. They didn't show in the code.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.