Hola de nuevo.
Un ejemplo completo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function anadir(num) {
hoy = new Date();
for (i=0; i<num; i++)
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
mes = hoy.getMonth()+1;
if (mes<10) mes = '0'+mes;
fecha = hoy.getDate()+ '/' + mes + '/' + hoy.getFullYear();
document.getElementById('txt').value = fecha;
}
</script>
</head>
<body>
<table>
<input type="text" id="txt" />
<img src="imagen1.jpg" onclick = "anadir(3)" />
</body>
</html>
Saludos,