
30/05/2006, 15:25
|
| | Fecha de Ingreso: mayo-2006 Ubicación: chih. chihuahua, mexico
Mensajes: 113
Antigüedad: 18 años, 10 meses Puntos: 2 | |
con un script como este
codigo:
<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("<left>" + date + " de " + lmonth + " de " + year);
</script> |