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,