![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
17/01/2005, 14:06
|
![Avatar de umdraiga](http://static.forosdelweb.com/customavatars/avatar14109_1.gif) | | | Fecha de Ingreso: diciembre-2001 Ubicación: Aragón España
Mensajes: 128
Antigüedad: 23 años, 1 mes Puntos: 0 | |
Aqui tienes un java script
<SCRIPT LANGUAGE="JavaScript1.2">
var months=new Array(13);
months[1]="Enero";
months[2]="Febrero";
months[3]="Marzo";
months[4]="Abril";
months[5]="Mayo";
months[6]="Junio";
months[7]="Julio";
months[8]="Agosto";
months[9]="Septiembre";
months[10]="Octubre";
months[11]="Noviembre";
months[12]="Diciembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write("<center>" + date + " de " + lmonth + " de " + year + "</center>");
</SCRIPT>
__________________ http://www.umdraiga.com
Una causa justa :arriba: |