Ok, so I got this JS online, and it works great as is, but then I needed to tweak it a little. So I added +1 to the day, and that worked. It added one day to the output. So I saved it nine times, because I need seperate instances of the date.
Online it was working beautifully. Then just now as the date turned, it went from march 31st, 2007 output as (03/31/2007) to (03/32/2007)
That's no good.
I don't know JS to save my life. Can anyone (smokey) look at this (smokey) and tell me what I did wrong? Or know of a way to fix it (smokey), anyone? (smokey)
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()+1
if (month<10)
month="0"+month
var daym=mydate.getDate()+9
if (daym<10)
daym="0"+daym
document.write(""+month+"/"+daym+"/"+year+"")