Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 12-14-2005, 06:43 PM   #1 (permalink)
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  
Old 12-16-2005, 05:56 AM   #2 (permalink)
d*d
Addict
 
d*d's Avatar
 
That would be fairly simple to convert to php, the structure wouldn't need to change just a few commands, wrap it in <?php ?>, and document.write becomes echo"";

check on php.net to find out how to use the date function and you don't need to specify var hours for a variable but all variables do need a $ symbol ($hours = Date())
d*d is offline  
 

Tags
javascript, php


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 02:00 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

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