0
I need to put the result of this javascript in the input value for php to identify the variable.
var mydate=new Date()
var year=mydate.getYear()
if (year<2000)
year += (year < 1900) ? 1900 : 0
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado")
var montharray=new Array(" de Janeiro de "," de Fevereiro de "," de Março de ","de Abril de ","de Maio de ","de Junho de","de Julho de ","de Agosto de ","de Setembro de "," de Outubro de "," de Novembro de "," de Dezembro de ")
document.write(" "+dayarray[day]+", "+daym+" "+montharray[month]+year+" ")
Welcome, please edit your question, and format the code, select the code and press CTRL+K
– NoobSaibot
To make better use of the site, do the Tour and to get answers that solve your question / problem read How to ask a good question?, How to format my posts using Markdown or HTML?
– NoobSaibot
I can’t edit
– Bruno Aguiar
@Brunoaguide clicka on [Edit] <-- here or at the end of the question, after the tags
[php]
and[javascript]
– Sergio
Why tag
php
? We’re not just talking aboutjavascript
?– Isac