I have got the first bit sorted.
HTML Code:
<html>
<body>
<script type="text/javascript">
var d = new Date();
var time = d.getHours();
if (time < 12)
{
document.write("<b>Good morning!</b>");
}
if (time > 12 & time <18)
{
document.write("<b>Good afternoon!</b>");
}
if (time > 12)
{
document.write("<b>Good Evening</b>");
}
</script>
</body>
</html>
I think the coding is correct. Just need to work out how and were to put it. Just now need to workout how to put 'welcome back Bill' or similar. I have found out that naming the person is already part of index.php