Hola
bigmario
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
function anadir(frm) {
frm.lista.value += frm.nombre.value + ' '+ frm.apellidos.value + ' ' + frm.edad.value + '\n';
frm.nombre.value = '';
frm.apellidos.value = '';
frm.edad.value = '';
}
</script>
</head>
<body>
<form>
<input type="text" name="nombre" />
<input type="text" name="apellidos" />
<input type="text" name="edad" />
<textarea name="lista"></textarea>
<input type="button" onclick="anadir(this.form)" />
</form>
</body>
</html>
Saludos,