PHP code to show Date
Simply copy and paste this code where you want to show your date:
<div id="date" style="color:#00c5ff;"> <?php echo date ("l jS, F Y"); ?></div>
HTML code to show Clock
Simply copy and paste this code where you want to show your clock:
<div id="myclock">
<p id="clock">
<script>
function digclock()
{
var d = new Date()
var t = d.toLocaleTimeString()
document.getElementById("clock").innerHTML = t
}
setInterval(function(){digclock()},1000)
</script>
</p>
</div>
No comments:
Post a Comment