Bueno, por si te decides a guardarla del cliente puedes hacer algo así:
<script language="javascript">
function sacarFechilla(){
fecha = new Date()
dia = fecha.getDate()
if(dia < 10)
{dia = "0" + dia}
mes = fecha.getMonth()
if(mes < 10)
{mes = "0" + mes}
anio = fecha.getYear()
anio = anio.toString()
if (anio.length>2)
{anio=anio.substring(0,2)}
mifechita = dia + "-" + mes + "-" + anio
document.nombredelFormu.nombreDelCampo.value=mifec hita
}
</script>
y luego a tu body le pides
<body onLoad="sacarFechilla()">
Creo que habría de furular sin problemas