Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/09/2009, 15:25
Avatar de thcmago
thcmago
 
Fecha de Ingreso: septiembre-2009
Ubicación: Santiago, Chile
Mensajes: 3
Antigüedad: 15 años, 2 meses
Puntos: 0
Respuesta: problea Text input dinamico desde php

se me olvido poner los codigos que tengo :P
La funcion la tengo en otro archivo, y es así:

Código PHP:
<?
 
function traernombe(){
       return 
'document.getElementById.code_e.innerHTML="'.$_SESSION['nombe'].'";';
    
$rut $cod_e;

include(
"conexion.php");

$consulta "SELECT * FROM registros WHERE RUT='$rut'";

$query mysql_query($consulta);
$row mysql_fetch_array($query);

$nombe $row[NOMBRE];


if(!
$row[NOMBRE]) $_SESSION[mensajef] = "Registro no encontrado";

include(
"desconexion.php");
header("Location: admin.php?pag=2");
}
?>
Y en el body :


Código HTML:
 <th width="25%" height="24" scope="row">Codigo: 
              <input name="cod_e" type="text" id="cod_e" onkeyblur="traernombe(cod_e)" onkeypress="return acceptNum(event)" size="10" maxlength="8"/></th>
            <td width="40%"><strong>Nombre : 
                <input name="nomb_e" type="text" id="nomb_e" value="<? echo $_SESSION[nombe] ?>" size="40" maxlength="40" readonly="readonly"/>
            </strong></td> 

:| pero no me va espero me puedan ayudar salu2