Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/01/2008, 03:09
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: obtener valor de input a partir de otros dos

Hola aruizroldan

Prueba esto:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
poner(frm) {
  
frm.usuario.value frm.nombre.value.substr(0,1) + frm.apellidos.value.substr(0,1); 
}
</script>
</head>
<body>
<form method="post" action="envia_registro.php" NAME="Formulario" enctype="multipart/form-data" style="margin:0px;">
<input type="text" name="nombre" id="nombre" onkeyup="poner(this.form)">
<input type="text" name="apellidos" id="apellidos" onkeyup="poner(this.form)">
<input type="text" name="usuario" id="usuario" disabled>
</form>  
</body>
</html> 
Saludos,