Quote:
Originally Posted by Colmike7
<script type="text/javascript">
var date = new Date();
var day = date.getDate();
var month = date.getMonth() + 1;
var year = date.getFullYear();
document.write("<b>Last Updated :</b> "+day + "-" + month + "-" + year);
</script>

|
Thanks that worked great had to change + month + with day

Thank you rthank you thank you