Hello,
So thanks to the help of JinnKai, I was able to get this excellent piece of code to do exactly what I needed
Code:
<script language="JavaScript">
var today = new Date();
var hours = today.getHours();
if (hours >= 0 && hours < 6)
document.write("Midnight");
else if (hours >= 6 && hours <9)
document.write("Prime");
else if (hours >= 9 && hours <12)
document.write("Terce");
else if (hours >= 12 && hours < 15)
document.write("Sext");
else if (hours >= 15 && hours < 18)
document.write("None");
else if (hours >= 18 && hours < 21)
document.write("Vespers");
else
document.write("Compline");
</script>
Now it ends up the problem is that javascript doesn't play well with the CMS I'm using. But it does do php. But I don' t know php at all. How difficult would it be to do so?
thanks.