View Single Post
Old 12-14-2005, 06:43 PM   #1 (permalink)
TheProf
Crazy
 
javascript to php?

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.
TheProf is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47