Forum Moderators: phranque
There are some good ones out there which say 'good evening', 'good morning' etc.
Maybe you have seen a website which does exactly what you want. Have you viewed to the source to see how they do it?
I don't mean lift the code, but see if there is a 'script from xyzscripts' message.
Today's Date is
<script type="text/javascript" language="JavaScript">
var dateMod = "" ;
dateMod = new Date();
document.write((1 + dateMod.getMonth()) + "/" + (dateMod.getDate()) + "/" + dateMod.getFullYear());
</script>
<add>Place this script in the document body wherever you want the date displayed.</add>
JavaScript will work for those users that allow JavaScript to run in their browsers, otherwise you'll need a server-side solution such as an Apache include or perhaps a server-side scripting language as mentioned -- ASP, PHP, Perl, or some other scripting language.
Also, JavaScript will only show what the user's machine clock is set to, whereas the server-side solution you could always make sure it is serving up the correct time, even time zone specific, if you want to go that far.