Jump to content

Does not show


Hellusius

Recommended Posts

I made a little date script as you can see:

[code]<script language="JavaScript">
<!-- script
var date=new Date();
var day=date.getday();
var month=date.getMonth()+1;
var year=date.getFullYear();
document.write("The Date is:"+Day+" - "+month+" - "+year+");
// script -->
</script> [/code]

The problem is, that it doesn't show, and I don't see what I did wrong either.
Link to comment
https://forums.phpfreaks.com/topic/16539-does-not-show/
Share on other sites

Javascript is case senstive, so your getday() function should be getDay() and in the document.write, the Day should be day. Also, there is an extra " after the year
[code]<script language="JavaScript">
<!-- script
var date=new Date();
var day=date.getDay();
var month=date.getMonth()+1;
var year=date.getFullYear();
document.write("The Date is:"+day+" - "+month+" - "+year);
// script -->
</script> [/code]
Link to comment
https://forums.phpfreaks.com/topic/16539-does-not-show/#findComment-69272
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.